摘要:
Consider enabling transient error resiliency by adding 'EnableRetryOnFailure()' to the 'UseMySql' call ef core连接不上MySQL 连接字符串是: 'Data Source = 127.0.0 阅读全文
摘要:
看了网上很多文章,很多都是只给了后端或者只给的前端打开文档微信那个openDocument的方法 而后端很多也只是给了返回流方法,这里看了很多总结下 首先后端要引入依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</a 阅读全文
摘要:
②准备好11个参数JSAPI支付方式 1 配置微信平台 ①配置微信公众平台 登录微信公众平台=》公众号设置=》功能设置=》网页授权域名 ②配置微信商家平台 ①先去官方下载SDK,并导进项目中 2 后台代码的实现 JSAPI官方文档:https://pay.weixin.qq.com/wiki/doc 阅读全文
摘要:
加上这两个属性就可,不过prop要原本就是图片链接哦! { label: "头像", prop: "icon", listType: 'picture-img', type:"upload", rules: [{ required: true, message: "请输入头像", trigger: 阅读全文
摘要:
解决Error: Cannot find module 'node-sass'问题
Node Sass version 5.0.0 is incompatible with^4.0.0
Error: Can't find Python executable "python", you can set the PYTHON env variable.解决办法 阅读全文
摘要:
dubbo连接不上,出现上面的异常,而且ip和端口都没问题,用外部连接软件测试zooInspector.cmd测试也可以连上,但是spring就是连不上 换掉dubbo的版本号就好了 如下: <dependency> <groupId>org.apache.dubbo</groupId> <arti 阅读全文
摘要:
// 更新当前页码 let totalPage = Math.ceil((this.totalNum - 1)/this.pageSize); let currentPage = this.currentPage > totalPage ? totalPage : this.currentPage; 阅读全文
摘要:
// 获取当前时间 getNowTime: function () { let dateTime let yy = new Date().getFullYear() let mm = new Date().getMonth() + 1 let dd = new Date().getDate() le 阅读全文
摘要:
elementUI时间日期选择器选择完传给后台的是林尼治标准时间 直接将格林尼治时间作参数传到下面的方法,下面的方法直接贴, // 格林尼治转换yyyy-MM-dd HH:mm:ss GMTToStr (time) { console.log('time:' + time) let date = n 阅读全文
摘要:
this.$confirm('您确定删除这条数据吗?').then(suc => { console.log('确认') console.log(suc)}).catch(err => { console.log('取消') console.log(err)})參考播客:https://blog.c 阅读全文