- web-view打开pdf文件,ios上可以安卓上打开空白页,业务域名已配置;?
web-view打开pdf文件,ios上可以安卓上打开空白页,业务域名已配置;?
01-18 - 企业微信中wx.qy.login获取code无效invalid code,报错40029,什么问题?
企业微信中wx.qy.login获取code无效invalid code,报错40029 使用的微信小程序的appid有么有关系
2023-11-20 - 草料生成的小程序二维码,在小程序中怎么获取生成二维码的参数?
草料生成的小程序二维码,在小程序中怎么获取生成二维码的参数?
2021-08-20 - 使用mpvue框架写的引入了4个js提示包太大,使用了分包加载,还应该怎么处理?
[图片] [图片]主包太大应怎解决
2020-09-21 - 小程序Image如何加载 使用OSS上传的带有referer防盗链的视频?
[图片] 怎么把referer的内容改掉,需要使用第三方的
2020-07-31 - 再次打开定位报错
再次打开定位开发工具上报错,实体机上不报错,可以调起打开权限的页面 [图片] 再次打开定位代码 wx.openSetting({ success: function (data) { console.log(data); if (data.authSetting["scope.userLocation"] == true) { console.log("授权成功"); } else { console.log("授权失败"); } }, fail:function(err){ console.log(err) } })
2018-09-08 - audio在IOS上不能播放
<audio src="../2018-07-09/5b42bcb197d81.mp3" binderror="aa" bindended="comp" bindplay="playVoice" id="myAudio" controls></audio> playVoice:function(){ this.audioCtx.play(); this.setData({ onPlay: true }) }, aa:function(res){ console.log(res) }, comp:function(){ this.setData({ onPlay: false, // cum:0 }) console.log("完毕") }, 在安卓和开发工具上都是可以播放的,在IOS上不能播放,报错不合适资源,播放路径在浏览器是可以播放的,这是怎么回事
2018-07-09 - wx.getLocation定位
再次授权定位。返回后不执行wx.getLocation方法,获取不到定位 onReady: function () { var that = this; wx.getSetting({ success: (res) => { console.log(res); console.log(res.authSetting['scope.userLocation']); if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {//非初始化进入该页面,且未授权 console.log("没授权") wx.showModal({ title: '是否授权当前位置', content: '需要获取您的地理位置,请确认授权,否则地图功能将无法使用', success: function (res) { if (res.cancel) { console.info("1授权失败返回数据"); } else if (res.confirm) { wx.openSetting({ success: function (data) { console.log(data); if (data.authSetting["scope.userLocation"] == true) { wx.showToast({ title: '授权成功', icon: 'success', duration: 5000 }) //再次授权,调用getLocationt的API that.posit(that); } else { wx.showToast({ title: '授权失败', icon: 'success', duration: 5000 }) } } }) } } }) } else if (res.authSetting['scope.userLocation'] == undefined) {//初始化进入 that.posit(that); } } }) } 在开发工具上是执行wx.getLocation方法的,在手机上就不执行
2018-06-13 - 获取地图中心点
this.mapCtx.getCenterLocation({ success: function (res) { console.log(res) } }) }, 有时候获取的经纬度为空
2018-06-07 - 一次上传多张图片
怎么实现一次上传多张图片的功能
2018-06-01