摘要:
首先读取xls和xlsx文档的所有内容。 XSSFWorkbook是读取xlsx文档07 HSSFWorkbook是读取xls文档03 public static void main(String[] args) throws IOException { Resource resource = ne 阅读全文
摘要:
错误的方式: server1和server2互相Peer,client1注册server1,client2注册server2。这种方式是错误的。 假设Server1和Server2,互为peer,且Client1只注册到Server1,Client2只注册到Server2(注意这个且字)。这个时候S 阅读全文
摘要:
单个插槽(默认插槽) <template> <div class="father"> <h3>这里是父组件</h3> <son> <div class="tmpl"> <span>xxxxxxxx</span> </div> </son> </div> </template> <script> im 阅读全文
摘要:
package com.llf.utils; import org.springframework.stereotype.Component; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; 阅读全文
摘要:
启动类加入@ServletComponentScan注解 package com.llf.utils; import javax.servlet.*; import javax.servlet.annotation.WebFilter; import java.io.IOException; @We 阅读全文
摘要:
package com.llf.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.sp 阅读全文
摘要:
不好用,转完问题挺多,还找不到资料头疼。public static void docxToHtml(String fileUrl) throws Exception { String path = fileUrl.substring(0,fileUrl.indexOf(".")); File fil 阅读全文
摘要:
全局加入如下样式即可(app.vue): body .el-table th.gutter{ display: table-cell!important; } 阅读全文
摘要:
注意请求时要设置responseType,不加会中文乱码,被这个坑困扰了大半天。。。 axios post请求: download(index,row){ var ts = this; axios.post(this.paths.baseURL+'file/downloadFile', {path: 阅读全文
摘要:
1、父组件获取子组件的数据和方法 $refs 子组件: <template> <div class="header"> <h3>{{ zz }}</h3> </div></template><script>export default { name: 'cx', data () { return { 阅读全文