[图片] 这个要放在data里面 使用是这样的的 this.data.goodListPagination.num
使用微信小程序的电商模板在开发者工具运行,变量都声明了,使用却报错,不知道问题在哪?请大佬们帮帮忙![图片] [图片]
2023-09-21[图片] 公众号配置这个了吗
用户在关注与取消关注公众号时,微信没有把这个事件推送到开发者填写的URL?[图片] 调试没有问题的情况下,事件没有调用这个url,怎么解决
2023-09-20不是很明白
小程序第三方开发自定义颜色怎么设置?如题
2023-09-20你 list.splice(index,1) 移除的是 list 的某条数据 移除之后要重新给list赋值 this.onLoad() 改成下面这个就可以了。 this.setData({ list: list })
调用this.onLoad(),this.onShow()列表重新显示问题?界面显示wxml <view wx:for="{{list}}" bind:tap="click" id="{{index}}" class="cc"><checkbox></checkbox>{{item.name}}</view> js代码 remove:function(val){ var list = this.data.list for (let index = 0; index < list.length; index++) { if(val==index){ console.log("删除成功") list.splice(index,1)//移除列表某个数据 this.onLoad()//调用页面加载刷新页面 } } } [图片] 删除某个数据后列表没有刷新,还是三个,大佬帮忙看看
2023-09-20不知道为啥搜索词被修改了 [图片] 点取消修改才能搜到 [图片]
微信公众号搜索全名,不显示,请帮忙看看?微信公众号搜索全名,不显示,请帮忙看看@社区技术运营专员 搜索查查图库可以搜到,但是搜索懵查查图库,公众号却搜索不出来
2023-09-20改好了 你去看看吧 https://developers.weixin.qq.com/s/IJRFrjmd7ILA
ios canvasToTempFilePath:fail invalid viewId?let canvas = wx.createOffscreenCanvas({ type: '2d', width: 1200, height: 342, compInst: this }) const context = canvas.getContext('2d') const width = 1200 const height = 342 // 创建一个图片 const image = canvas.createImage() // 等待图片加载 await new Promise(resolve => { image.onload = resolve image.src = '...' // 要加载的图片 url }) return new Promise((resole, reject) => { context.clearRect(0, 0, width, height) context.drawImage(image, 0, 0, width, height) context.fillStyle = '#fff' context.font = "36px serif"; context.fillText('测试', 42, 48) wx.canvasToTempFilePath({ width: width, height: height, canvas: canvas, canvasId: canvas.id, success(res) { resole(res.tempFilePath) }, fail: (err) => { reject(err) } 机型:ios16.5 iPhone 13 mini 基础库:3.0.2 代码片段:https://developers.weixin.qq.com/s/vSzgUfmM7BL8
2023-09-18安卓没问题?
iOS直接点击视频链接可以播放但是通过接口放到video标签中无法播放?iOS直接点击视频链接可以播放但是通过接口放到video标签中无法播放? {"type": "error", "target": {"dataset": {}, "id": "infos_v", "offsetTop": 109, "offsetLeft": 16, "errMsg": "MEDIA_ERR_NETWORK"}, "currentTarget": {"dataset": {}, "id": "infos_v", "offsetTop": 109, "offsetLeft": 16}, "timeStamp": 3965, "detail": {"errMsg": "MEDIA_ERR_NETWORK"}, "preventDefault": "<Function: g>", "stopPropagation": "<Function: g>", "stopImmediatePropagation": "<Function: g>"} 提示这些信息 手机是iPhone11,iOS 15.4.1,微信版本 8.0.41 视频地址 https://study.kh.qhjurenwl.com/../../storage/video/6474665da2927.mp4 https://study.kh.qhjurenwl.com/storage/video/6474665da2927.mp4
2023-09-16把代码片段贴过来 或者试试这样 <map id="myMap" style="width: 100%; height: 100%;" latitude="{{latitude}}" longitude="{{longitude}}" show-location="{{true}}" /> Page({ data: { latitude: 0, // 初始纬度 longitude: 0, // 初始经度 }, onLoad: function () { // 获取当前位置 wx.getLocation({ type: 'wgs84', // 使用 GPS 坐标系统 success: (res) => { this.setData({ latitude: res.latitude, longitude: res.longitude, }); }, fail: (res) => { // 处理定位失败的情况 console.log('获取位置失败', res); } }); }, });
地图组件怎么实现开始的时候以当前坐标点为中心?我用微信的getLocation/腾讯地图SDK获取的坐标传进去都不行(有偏差,getLocation开启高精度也不行),我还以为手机定位的问题,但试了下其它人的小程序都可以[图片][图片]前一张为腾讯SDK获取的当前坐标,后一张为getLocation高精度模式获取的坐标
2023-09-16换个人的UnionID试试,可能这个人没授权
无法获取用户信息https://developers.weixin.qq.com/doc/offiaccount/User_Management/Get_users_basic_information_UnionID.html [图片] 这是什么原因?突然就不行了,什么参数都是正常。
2023-09-16找了好久找不到原因
自定义tabbar菜单选中圆框位移异常该如何解决?自定义tabbar菜单选中圆框位移异常该如何解决?求大神指点,感谢 webview渲染模式 [图片] Skyline 渲染模式 [图片] 代码片段:在这里
2023-09-16