不要在调用这个前面执行其他不必要的操作
wx.request回调中部分调用requestSubscribeMessage失败,为什么?提示:requestSubscribeMessage:fail can only be invoked by user TAP gesture. catchtap调用请求,再回调中执行消息订阅,部分手机报错(安卓 ios都有出现)
2021-02-22let arr1 = ["1.1","1.2","1.3","2.1","2.2","2.3"]; let arr2 = arr1.map(m => { return {0:m}; }) console.log(arr2)
一位数组变成json格式?[图片] 把上面数据做成这样的 [{"0”:"1.1"},{"0”:1.2},{"0”:1.3},{"0”:2.1,"1":2.1},{"0”:3.1}]
2021-02-02https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
小程序是否能离开小程序并打开公众号?是否能够做到:点击按钮 -> 离开当前小程序 -> 打开微信公众号页面 如果能打开的话,就可以再通过页面跳回。
2021-01-29无法
如何去掉“喜欢此内容的人还喜欢”的功能?请问如何去掉“喜欢此内容的人还喜欢”的功能? 不喜欢的文章的跟上来了,超恶心。
2021-01-26[图片]
微信广告助手收到小程序广告组件被驳回通知,让我查看mp后台,并没有收到任何通知,怎么恢复广告?微信广告助手收到小程序广告组件被驳回通知,让我查看mp后台,并没有收到任何通知,怎么恢复广告? [图片][图片] APPID:wx700916f8e31e26dd 原始ID:gh_485c505ded68
2021-01-26不要在选择图片的时候,就上传 1、选择图片,存在一个数组里 2、点击提交按钮,验证数组长度
发布图片,上传图片个数各位前辈大家好,我想请问如何在这段代码中设置上传图片的最少个数,比如最少上传一张图片否则不能发布内容并且做出提示 chooseImage: function () { var that = this; wx.chooseImage({ count: 9 - that.data.cloudImgList.length, sizeType: ['original', 'compressed'], sourceType: ['album', 'camera'], success(res) { console.log(res.tempFilePaths) // 上传图片 that.data.tempImgList = res.tempFilePaths that.uploadImages() }, }) }, uploadImages() { var that = this; for (var i = 0; i < this.data.tempImgList.length; i++) { wx.cloud.uploadFile({ cloudPath: `actionImages/${Math.random()}_${Date.now()}.${this.data.tempImgList[i].match(/\.(\w+)$/)[1]}`, filePath: this.data.tempImgList[i], success(res) { console.log(res.fileID) that.data.cloudImgList.push(res.fileID) that.setData({ cloudImgList: that.data.cloudImgList }) } }) } },
2021-01-25我这里有
event 里 没有 openid 和 appidhttps://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/functions/getting-started.html 文中说 event 就是小程序端调用云函数时传入的参数,外加后端自动注入的小程序用户的 openid 和小程序的 appid。 我咋在调试的时候没见这两个字段?还有cloudbaseRoot 这个设置了,确定有用吗?感觉这篇教程很不准确啊
2021-01-25https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.or.html
云开发,where条件可不可以是或的关系?开发,where条件可不可以是或的关系? 如下,status_process=0,或者flag_noexpired=true 则输出记录 咋写 db.collection('release_content_col').where( { status_process: 0, //flag_noexpired: true, },
2021-01-22提示一句就好了,
广告组件被驳回“观看激励视频后无下发奖励”,有赠送礼物的,需要怎么修改?[图片] 观看激励视频会完成后会显示赠送成功的啊,是不是因为赠送的礼物没有在页面显示出来的原因,需要如何修改 appid : wx67294c307a35ae46
2021-01-21估计你是有什么样式盖住他了,导致无法触摸到
使用swiper实现轮播图,但是不能手动滑动,模拟器跟真机都不能手动切换图片,怎么解决?WXML代码如下: <swiper autoplay="true" interval="3000" circular="true" duration="800" bindchange="swiperChange"> <block wx:for="{{imgUrls}}" wx:key="index"> <swiper-item> <image src="{{item}}" class="slide-image" /> </swiper-item> </block> </swiper> <view class="dots"> <block wx:for="{{imgUrls}}" wx:key="index"> <view class="dot{{index == currentSwiper ? ' active' : ''}}"></view> </block> </view> [图片] js代码 swiperChange(e) { let current = e.detail.current; this.setData({ currentSwiper: current, }) }, [图片]
2021-01-21