摘要:
background: -webkit-linear-gradient(#EE2825,#F6872B,#f6872b); /* Safari 5.1-6.0 */ background: -o-linear-gradient(#EE2825,#F6872B,#f6872b); /* Opera 1 阅读全文
摘要:
jsonToUrl : export const jsonToUrl = (data) => { try { var tempArr = []; for (var i in data) { if (encodeURIComponent(data[i]) != 'undefined' && encod 阅读全文
摘要:
content的取值为webkit,ie-comp,ie-stand之一,区分大小写,分别代表用webkit内核,IE兼容内核,IE标准内核。 若页面需默认用极速核,增加标签:<meta name="renderer" content="webkit"> 若页面需默认用ie兼容内核,增加标签:<me 阅读全文
摘要:
uniapp重写 plus.runtime.quit 方法 toast也是plus的nativeUI,加一个判断即刻 let main = plus.android.runtimeMainActivity(); //为了防止快速点按返回键导致程序退出重写quit方法改为隐藏至后台 plus.runt 阅读全文
摘要:
function startAPVerify(options, callback) { my.call('startBizService', { name: 'open-certify', param: JSON.stringify(options), }, callback); } startAP 阅读全文
摘要:
const downloadTask = uni.downloadFile({ url: 'http://172.16.20.223:9083/test/download/1.wgt', complete: (res) => { console.log(res) }, success: (downl 阅读全文
摘要:
改HBuilderX的底层,分别编辑HBuilderX\plugins\uniapp-cli\node_modules\@dcloudio\uni-mp-weixin\dist\index.js 和 HBuilderX\plugins\uniapp-cli\node_modules\@dcloudi 阅读全文
摘要:
:on-success="(value) => uploadFun('formAddItem',value,'pic_url')" 阅读全文
摘要:
1. Windows上设置浏览器可跨域。 首先找到你的谷歌浏览器的快捷方式,右键快捷方式选择属性,进入属性设置。 在“目标”输入框的后面追加 ,记住一定要在追加前加上空格。 --disable-web-security --user-data-dir="",--user-data-dir Chrom 阅读全文
摘要:
只有一个接口ip端口时 [js] view plaincopy devServer: { open: false, // 跨域 proxy: { '/nuojinadm/': { target: 'http://192.168.0.11/', changeOrigin: true } } } 2、设 阅读全文