请问问题解决了么?遇到同样问题
scroll-view + input 输入类容错位以及input中出现滚动条?scroll-view + input输入框快速滑动会出现 类容错位问题 [图片] 使用https://developers.weixin.qq.com/community/develop/article/doc/000a00e1fd0790488e6a034f156813 第二种方法 页面用scroll-view,通过变量{sysScroll}来控制 后出现快速滑动会在input中出现滚动条 视频如下 [视频] 暂时只发现ios有这个问题
2020-10-20请问问题解决了么?
scroll-view容器超出一屏之后安卓正常,ios会被遮挡,为什么?scroll-view容器超出一屏之后,真机调试状态下,ios在scroll-view里面滑动到底部,但pages不会同步滑动,致使ios底部被遮挡一部分,安卓正常,scroll-view内部滚动条滑到下面可以带动外部pages滑动。 [图片]
2020-10-15请问问题解决了么?
在地图上面加了一个view层,在向上滑动时,底层地图随着滑动,而view层不动?在地图上面加了一个view层,在向上滑动时,底层地图随着滑动,而view层不动 代码片段 https://developers.weixin.qq.com/s/h8MQuqmR72dv [图片]
2020-10-13你好,请问问题解决了么?我看的是真机和模拟器的label的原点位置不一样。
地图组件 marker 上label位置真机和工具显示的不一样,是最近更新了地图组件吗?前几天还是好的, 今天发现map组件, 真机(苹果8)中的label位置错乱了, 但是开发工具里显示还是正常的, 怀疑最近这个组件更新过了,搞坏了。 没有代码片段,请官方自行测试
2020-09-28请问问题解决了么?
小程序调用手机相机,拍得时候拍照中间有一个长条状框怎么实现?需要做一个调用相机拍一段码的照片,实现小程序调用相机的时候,拍照过程中中间有一个矩形的框这样怎么实现?
2020-07-29请问问题解决了么?怎么可以避免重复触发?或者怎么关闭然后再触发?
多次调用wx.startLocationUpdateBackground()会出现重重复监听事件?比如我单击按钮 开启后台位置监控调用,再单击关闭后台监控,现在的问题是 开了然后关,再开发现onLocationChange事件触发2次,再关再开就会出现3,4,5次.这是如何避免 //开启后台获取地理位置坐标 async enableLocationUpdateBackground() { const that = this; wx.startLocationUpdateBackground({ success:async res=> { //console.log('开启后台定位', res) Notify({ type: 'success', message: '开启上报定位信息' }); //开始记录 const userId = wx.getStorageSync('userId'); const openId = wx.getStorageSync('openid'); const userInfo = this.data.userInfo; const startloc = await that.getLocation(); const startaddress = await that.reverseGeocoder({ latitude: startloc.latitude, longitude: startloc.longitude }); that.addTrackPath({ "UserId": userId, "TrackingDateTime": moment().format("YYYY-MM-DDTHH:mm:ss.SSS[Z]"), "BeginDateTime": moment().format("YYYY-MM-DDTHH:mm:ss.SSS[Z]"), "Location": JSON.stringify(startloc), "latitude": startloc.latitude, "longitude": startloc.longitude, "Address": startaddress.result.address, "OpenId": openId, "NickName": userInfo.nickName, "AvatarUrl": userInfo.avatarUrl, }) wx.onLocationChange( async res => { //console.log('onLocationChange', res) const loc = await that.reverseGeocoder({ latitude: res.latitude, longitude: res.longitude }); //console.log(loc) that.addTrackPath({ "UserId": userId, "TrackingDateTime": moment().format("YYYY-MM-DDTHH:mm:ss.SSS[Z]"), "Location": JSON.stringify(res), "latitude": res.latitude, "longitude": res.longitude, "Address": loc.result.address, "OpenId": openId, "NickName": userInfo.nickName, "AvatarUrl": userInfo.avatarUrl, }) }); }, fail(res) { that.setData({ enable: false }) console.log('开启后台定位失败', res) Notify({ type: 'danger', message: '开启定位失败' }); Dialog.alert({ message: '请转到设置位置信息[使用小程序期间和离开小程序后]', }).then(() => { wx.navigateTo({ url: '../manage/index', }) }); }, complete: function (res) { // console.log('开启后台定位.complete', res) // wx.openSetting({ // success(res) { // console.log(res.authSetting) // res.authSetting = { // "scope.userInfo": true, // "scope.userLocation": true // } // } // }) }, }); }, //关闭后台获取地理坐标 disableLocationUpdateBackground() { const that = this; wx.stopLocationUpdate({ complete: async (res) => { wx.offLocationChange(res=>{ }) //结束记录 const userId = wx.getStorageSync('userId'); const openId = wx.getStorageSync('openid'); const userInfo = this.data.userInfo; const endloc = await that.getLocation(); const endaddress = await that.reverseGeocoder({ latitude: endloc.latitude, longitude: endloc.longitude }); that.addTrackPath({ "UserId": userId, "TrackingDateTime": moment().format("YYYY-MM-DDTHH:mm:ss.SSS[Z]"), "EndDateTime": moment().format("YYYY-MM-DDTHH:mm:ss.SSS[Z]"), "Location": JSON.stringify(endloc), "latitude": endloc.latitude, "longitude": endloc.longitude, "Address": endaddress.result.address, "OpenId": openId, "NickName": userInfo.nickName, "AvatarUrl": userInfo.avatarUrl, }) Notify({ type: 'primary', message: '停止上报定位信息' }); }, }) },
2020-07-23请问有解决办法么?
onLocationChange时间间隔可以手动调整吗?onLocationChange默认是每3秒获取一次吗?可以手动修改时间间隔吗
2020-07-22请问问题解决了吗?
请问一下,现在怎么维持小程序一直在后台运行,比如我想每隔十分钟发送一次当前定位信息到我的服务端请问一下,现在怎么维持小程序一直在后台运行,比如我想每隔十分钟发送一次当前定位信息到我的服务端,这个怎么处理好?
2020-07-20请问问题解决了么?遇到同样的问题
wx.downloadFile 无法完成文件下载,提示statusCode:403,什么原因?基础库版本2.11.2
2020-06-30请问问题解决了么?
为什么真机上的textarea会悬浮起来,没有滚动条就正常,这个问题不能解决吗麻烦给个低现在急需,要用
2020-06-11