上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: import org.springframework.boot.CommandLineRunner; import org.springframework.stereotype.Component; @Component public class OpenBrowser implements Com 阅读全文
posted @ 2021-01-05 14:45 皮军旗 阅读(2087) 评论(0) 推荐(1) 编辑
摘要: 设置路径 打开vue项目中的config/index.js文件 设置如下 有博客说assetspublicpath中设置为"/",自己测试不行,需要设置成"./"才不会报错 把vue 项目打包成dist包 npm run build 生成dist包 导入到springBoot项目 在springbo 阅读全文
posted @ 2021-01-05 14:22 皮军旗 阅读(3795) 评论(0) 推荐(0) 编辑
摘要: iframe页面无法调用摄像头修改 最近使用iframe嵌入聊天页面,发现根本无法调用摄像头呀,记录一下原来需要增加 allow属性属性值为: microphone;camera;midi;encrypted-media; 完整示例: <iframe src="" frameborder="0" w 阅读全文
posted @ 2021-01-05 08:56 皮军旗 阅读(2326) 评论(0) 推荐(0) 编辑
摘要: // 悬浮按钮组件 <template> <div style="position:relative;"> <div class="button-box" v-drag draggable="false"> <div class="btn-bg-img" @dblclick="openBox"></ 阅读全文
posted @ 2020-12-31 16:15 皮军旗 阅读(426) 评论(0) 推荐(0) 编辑
摘要: get请求数据 用params传参数是一个对象 //请求数据 insuranceClassifyData () { this.$http.get(Apis.INSURANCE_CLASSIFY, { params: { pageNo: 1, sortBy: 'weight:desc' } }) .t 阅读全文
posted @ 2020-12-26 16:38 皮军旗 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 本文是利用阿里巴巴封装的FastJSON来转换json字符串的。例子如下: package com.zkn.newlearn.json; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import 阅读全文
posted @ 2020-12-22 10:43 皮军旗 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 本博客适用于测试使用,因为生成的证书需导入客户端电脑,如需商用请购买证书 1.windows电脑下载openSSL软件 官方下载地址: https://www.openssl.org/source/ 备用下载地址: http://slproweb.com/products/Win32OpenSSL. 阅读全文
posted @ 2020-12-21 16:20 皮军旗 阅读(3384) 评论(0) 推荐(1) 编辑
摘要: 1、在SSM架构中正常使用的代码,迁移到Spring Boot中出现错误 我是@ServerEndpoint注解方式实现 报错: 这绝对是个坑!!! 错误原因:要注入ServerEndpointExporter,这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket 阅读全文
posted @ 2020-12-19 17:17 皮军旗 阅读(4300) 评论(0) 推荐(0) 编辑
摘要: 1)设置全局参数pageindex 点击右上角【眼睛图标】 然后点击【Edit】然后来到这个弹窗设置全局参数 pageindex 初始值1,设置完成后点击【Save】,最后点击右上角的【x】关闭弹窗。 2)将设置的全局参数代入请求参数 这时候点击【send】能够看到请求到初始值1的分页的数据。点多次 阅读全文
posted @ 2020-12-18 14:19 皮军旗 阅读(6184) 评论(0) 推荐(0) 编辑
摘要: CorsConfig跨域配置类一 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springfra 阅读全文
posted @ 2020-12-18 11:31 皮军旗 阅读(333) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页