摘要:
let authUrl = `alipays://platformapi/startapp?appId=20000067&url=${encodeURIComponent( res.data )}`; console.log(authUrl); if (uni.getSystemInfoSync() 阅读全文
摘要:
在uniapp的开发中,为了优化app里请求资源带来的流量,所以使用了oss的webp格式图片,但无奈的是ios不支持,于是只有写一个过滤器 if (uni.getSystemInfoSync().platform == 'ios') { return oss访问图片地址 + img; } else 阅读全文
摘要:
多个开发者使用不同版本打包的包会提示如下界面 如果不想去重新下载sdk可以直接在配置里隐藏掉 直接在mainfest.json中app-plus下添加 "app-plus": { "compatible": { "ignoreVersion": true //true表示忽略版本检查提示框,HBui 阅读全文