有问题啊。开发版和开发工具上好好的。一发布,线上版也是一直转圈圈。无法使用
wx.getLocation定位失败?越来越多用户出现问题: wx.getLocation定位失败, 因为使用了showLoading,用户那边一直在转圈。官方帮忙赶紧看下,越来越多用户出现,抱怨声很大。 用户反馈: 几乎每天都会出现,重启手机也不行,网络信号都满格 wx.showLoading({ title: '正在获取位置'}); wx.getLocation({ type: 'gcj02', isHighAccuracy:false, highAccuracyExpireTime: 3100, success: function (res) { wx.hideLoading(); //success.. }, fail: function (res) { wx.hideLoading(); //fail... } }) [图片] [图片]
04-01https://www.jianshu.com/p/e26458c1197e 这位大神给出答案。
为什么数据库读取的换行符号“\n”,不起作用?小程序在数据库读取一段文字,带有换行符号“\n”,不起作用,但是在小程序前端编辑的一段文字,换行符号“\n”可以起作用,等后台数据库返回文字,覆盖原来的文字后,返回的文字不能换行,换行符号“\n”,不起作用。
2023-01-13我也是hide就关掉,onshow就重启,要是出问题了,就跳转到新的页面,设置一个重新连接的按钮。
小程序Collection.watch API的问题?这个API, 官方文档只阐明了使用方式,现在的问题是,watch长时间被自动断开,hide小程序之后重新打开后watch断开的问题,官方是否能给出一个解决方案??
2021-08-19https://developers.weixin.qq.com/community/develop/article/doc/000a244b4a0e184f543a2ff9c5b013;这个兄弟发了代码出来了。
用云开发,黄图无法鉴别,请问图片上传的参数应该是什么?// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { try { var result = await cloud.openapi.security.imgSecCheck({ media: { // contentType: 'image/jpg', contentType: 'image/*', value: Buffer.from(event.img) //imgcontent:event.img } }) return result } catch (err) { return err } } 调用: 我用的是有赞vant uploadr组件获取了临时文件的地址 afterRead(event) { const { file } = event.detail; //获取临时文件路径 const fileList = this.data['fileList1']; this.setData({ [`fileList1`]: fileList.concat(file) }); //存入fileList1数组 console.log(this.data.fileList1[0].path);//查看输出的文件 为utl http://tmp/wxcda4cb82f8d9d46b.o6zAJs5UzBjZe6rkptj9M9Cxtz0s.tJrNexHpPXPM50faffa508d8443d2b12b93c45df17e3.jpg wx.cloud.callFunction({ // 云函数名称 name: 'checkimg', // 传给云函数的参数 data: ({ img: this.data.fileList1[0].path //黄图继续报正确 // img:event.detail //黄图继续报正确 //img: fileList.concat(file) }), }).then(res => { console.log(res); if (res.result.errCode == 0) { // console.log(res); //这里输入审核通过后的内容 } else { wx.hideLoading(); console.log(res); wx.showModal({ title: '提醒', content: '请注意言论', showCancel: false }) } } ) }, 得到的结果: errCode: 0 errMsg: "openapi.security.imgSecCheck:ok" [图片] 是黄图却可通过,但我用你们的“珊瑚安全小程序”判断,就显示不能通过,说明图片是黄图 这图片没有错误, 现我猜想是不是我date img 上传的类型会不会有误? 应该上传什么数据 ? 我上传 http://tmp/wxcda4cb82f8d9d46b.o6zAJs5UzBjZe6rkptj9M9Cxtz0s.tJrNexHpPXPM50faffa508d8443d2b12b93c45df17e3.jpg 还要转化吗?
2020-12-11我也出现这个问题,我觉得是触发的时候,当前的页面不是TabBar 页面,就会报错。
app.js 调用 wx.showTabBarRedDot 报错app.js 调用 wx.showTabBarRedDot 直接报错报错 [图片] 2.10.1及其之前的版本正常
2020-10-08<button form-type="reset" type="warn" bindtap="pickerrest">重置</button> <picker bindchange="bindchange" name="piker选择器" mode="selector" range="{{test}}" value="{{index}}">请选择项目:{{test[index]}}</picker> data: { flag:0, test:["篮球","足球","羽毛球"], index:2 }, pickerrest(){ this.setData({ index: 2 }); },
报告一个BUGhttps://developers.weixin.qq.com/miniprogram/dev/component/form.html form表单中的picker,如果已经进行选择,然后按重置键,picker组键的选项不会重置,仍然是显示原来的选项,而此时按提交,form表单中提交的picker项目的值是“-1”。需要修正。
2020-05-10