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