转发可以带参数,直接在path写就可以了
onShareAppMessage转发路径是TabBar能带参数吗?onShareAppMessage转发路径是TabBar能带参数吗? 页面路由TabBar页面铁定是不能带参的,这个我知道,我想知道转发的TabBar页面能带参数吗? 我试过了,带参带过去了,我不知道是参数缓存还是真能带过去,心里没底。
2018-09-21这是个遗留很久的问题 https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=1691894671&docid=000cc4ef5bc4b0d088e6bad8651800&comment_lvl=0%EF%BB%BF
微信小程序 调用相机 部分安卓手机出现重启小程序以下是我的方法,请问是怎么回事呢? doWordIndentify: function () { var that = this that.setData({ showOcrResult: false }) data: { ocrImgUrl: null } wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], success: function (res) { var tempfilePath = res.tempFilePaths[0] that.setData({ ocrImgUrl: tempfilePath, }) console.log(tempfilePath) wx.uploadFile({ url: 'https://zs.nxxxjs.top/API/getImage', filePath: tempfilePath, name: 'file', formData: { 'user': 'test' }, success: function (res) { wx.showToast({ title: '解析成功', icon: 'succes', duration: 1000, mask: true }) var carN = res.data console.log(carN) console.log(carN[0]) var carN1 = carN.slice(15,-4) console.log(carN1) that.setData({ inputTxt1: carN1, }) //do something }, fail: function (err) { console.log(err) } }) }, fail: function (res) { // fail }, complete: function (res) { // complete } }) },
2018-09-11现在开发版和体验版已经不会主动弹授权框了,但是目前上线后还是会弹,这是个坑,官方还没具体说正式版几时会取消。
说好的getUserInfo现在只能用button调取授权呢?说好的getUserInfo现在只能用button调取授权呢?我现在就是引导用户点按钮授权,但是为啥我发布后,刚进小程序又自动提示我是否授权?wx.getUserInfo到底还能不能在进入程序后直接调用?
2018-06-14