摘要:
这是因为在公证的是时候,断网了或者是自己中断了上传,但是此次记录还在,所以每次提交都会报错, 网上很多都是针对iOS的处理方法,是: rm ~/.itmstransporter/UploadTokens/*.token 但是此方法不适用于macOS,macOS上执行的命令为: rm ~/Librar 阅读全文
摘要:
vite打包使用了rollup,这个时候引入axios不能使用之前vue-cli的方法,打包会报错, 解决方案: import Axios from 'axios'; 改成 >> import Axios from 'axios/dist/axios'; 阅读全文
摘要:
单纯的给tr加border是不生效的,需要设置table table{ border-collapse: collapse; } table tr{ border-bottom: 1px solid #e5e5e5; } 阅读全文
摘要:
案例 一张表内例如一个学生有多个成绩,需要统计出每个学生的成绩最高分? 解决方法网上很多方法都是这样实现的(先倒序,在分组,group by 默认取最上面的一条数据)结果发现实际中这样做拿到的数据还是有误的 select * from (select * from scores order by s 阅读全文
摘要:
let iosDownload = '******', // 如果打开scheme失效的app下载地址 andDownload = '*****'; let u = navigator.userAgent; let isAndroid = u.indexOf('Android') > -1 || u 阅读全文
摘要:
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate; if(navigator.vibrate) { // 支持 console 阅读全文
摘要:
grid: { left: '2%', right: '2%', bottom: '3%', containLabel: true }, 阅读全文
摘要:
while(this.arr.length < 3){ let num = parseInt(Math.random() * 9) // parseInt取正,小数点后面的数字全部抹掉 // Math.random() 0-1的随机数 if (this.arr.indexOf(num) == -1) 阅读全文
摘要:
main:"background.js" vue-cli3的配置都在vue-config.js里面,把里面的files选项去掉即可。 然后在package.json中添加: 阅读全文
摘要:
故障长上图这样。 解决方法:打开File->project structure 选择Artifacts 点击上面最显眼的那个加号,选择Web Application:Exploded 接着按照下面操作进行: 选择Put into Output Root. 点击OK. 返回到Tomcat配置页面选择D 阅读全文