- 小程序真机调试(同样的ip) 访问有效接口地址 提示errno":600001“?
同样的ip地址下 访问有效接口 提示600001 "(in promise) MiniProgramError\n{"errno":600001,"errMsg":"request:fail -200:net::ERR_CERT_COMMON_NAME_INVALID"}\nObject"
2023-02-02 - downloadFile下载html连接后,web-view开发工具可以打开,真机失败?
/* 本地开发工具可以正常打开 真机中提示不支持打开 */ <web-view :src="url" :update-title="false" :fullscreen="false"></web-view> uni.downloadFile({ url: that.type === 'agree' ? '可用的阿里系html链接/user.html' : '可用的阿里系html链接/privacy.html', //下载地址接口返回 success: data => { if (data.statusCode === 200) { uni.setStorage({ key: 'agreement', data: data.tempFilePath }); // that.url = data.savedFilePath; console.log(data.tempFilePath, 888); //文件保存到本地 uni.saveFile({ tempFilePath: data.tempFilePath, //临时路径 success(res) { console.log(res, 999); that.url = res.savedFilePath; // 设置导航条 uni.setNavigationBarTitle({ title: that.map[that.type] }); } }); } },
2023-01-17 - 小程序pc版分享出现感叹号?
开发pc小程序时,分享出现感叹号
2020-02-17 - animation.step高频率触发,是否会中断后续step动画效果?
handleAnimation() { let animation = wx.createAnimation({ duration: 100, timingFunction: 'ease', delay: 10 }); let action = wx.createAnimation({ duration: 100, timingFunction: 'ease', delay: 10 }); action.translate(0, -40).opacity(1).step().translate(0, 0).opacity(1).step(); animation.translate(0, -40).opacity(1).step().translate(0, 0).opacity(1).step(); this.setData({ ani: animation.export(), act: action.export() }) } 问题是当点击频率很快时会造成.translate(0, 0).opacity(1).step();不生效,造成样式没有回到原位
2019-11-11 - createSelectorQuery?
js中调用wx.createSelectorQuery().selectAll('#c1').node(res => { console.log(res) }).exec()工具没打印res,这个是什么原因呢?
2019-11-10