- 使用官方的上传文件demo时,选择文件后会调用onShow(),能不能不调用onshow()?
使用官方的上传文件demo时,选择文件后会调用onShow(),能不能在选择文件后不调用onshow()?下面是我的代码: wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album'], success(res) { for(var i=0;i<res.tempFilePaths.length;i++){ console.log('chooseImage success, temp path is', res.tempFilePaths[i]) } const filePath = res.tempFilePaths[0] wx.showLoading({ title: '上传中' }) app.getUserOpenIdViaCloud() .then(openid => { const cloudPath = 'upload/' + openid + filePath.match(/\.[^.]+?$/)[0]+"_"+(new Date()).getTime() console.log('cloudPath', cloudPath) wx.cloud.uploadFile({
2020-07-07 - 云函数部分参数可能值等于0,怎么传参?
云函数部分参数可能值等于0,怎么传参? 直接传0的话,云函数那边会变成undefined
2020-07-05 - 开发工具怎么清理js文件缓存,现在修改js文件保存后编译无效
[图片]
2020-06-29 - js里面使用for循环,
delspecification: function(e){ var sid = e.currentTarget.dataset.id var s = this.data.specifications var slist = [] var j = 1; for(var i=0;i<s.length;i++){ var map = s[i] map._id = j; if(sid!=s[i]._id){ slist.push(map) j++ } } this.setData({specifications:slist}) } z 这是for循环的json值:[图片] 我传进去的“sid”值是“3” 当i=4时,json却变了,后面的ID全部变成了3:[图片]
2020-06-28 - 云函数的调用日志详情为什么无法复制搜索?
云函数的调用日志详情为什么无法复制搜索? 工具版本:1.03.2006090_x64.exe
2020-06-20 - getUserInfo报错:getUserInfo:fail scope unauthorized?
js里面调用getUserInfo 开发工具报错:getUserInfo:fail scope unauthorized; 真机调试报错:getUserInfo:fail auth deny。 前几天还能正常调用,今天发现报错了 代码: wx.login({ success: function (res) { wx.getUserInfo({ success: function (res) {}, fail(err) { console.error(err) } }) } })
2020-06-19 - 真机调试时,wxss文件在哪里查看?我的小程序部分wxss文件编译有问题
开发者工具版本:v1.03.2005141 系统:win10
2020-06-18