- mp-dialog两个button实现不同的功能?
test content/view> /mp-dialog> buttons 有两个按钮,但是只实现 bindbuttontap="tapDialogButton" 这一个功能?如何让其实现两个不同的功能。 2020-09-04 - wx.showloading,设置mask:true,在真机调试中无效?
[图片] 设置mask为true,在电脑上模拟调试,后面页面不能操作,在真机调试中,后面页面还是可以操作的
2020-09-03 - 小程序上面的返回键可以在js文件中去掉吗?
[图片] 如上图所示,点击升级的过程中,红色圈圈中返回键可以禁用吗
2020-08-24 - progress控件怎么不显示?
[图片] 怎么不显示进度条,只显示20%? 显示部分只有如下: [图片]
2020-08-24 - 微信开发者工具如何将修改程序的文件标志给去掉?
[图片] 文件修改后,如何将左侧的M标记去掉
2020-07-25 - 打开微信开发者者工具,总共打开了哪几个进程?
微信开发者工具 稳定版 Stable Build (1.03.2006090) Windows 64 打开后包含哪几个进程?
2020-07-23 - wx.getLocation 在安卓系统中获取不到定位权限
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 res.authSetting['scope.userLocation'] 的值不能为undefine,应当为true或者false , 或者调用wx.getLocation能够定位。 目前在IOS系统中可以。 安卓手机也出现过可以的情况,不稳定,真机调试。 - 复现路径 - 提供一个最简复现 Demo Page({ onLoad:function(option){ var that =this; village_LBS(that); }, 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){ 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 }) village_LBS(that); } } }) } } }) } else if (res.authSetting['scope.userLocation'] == true) {//初始化进入 village_LBS(that); } else if (res.authSetting['scope.userLocation'] == undefined){ } } }) } }) // 地图功能单独拿出来 - xzz1023 var village_LBS = function (that) { wx.getLocation({ type:'gcj02', success:function(res){ console.log(res.latitude); console.log(res.longitude); } }) }
2019-03-02 - 小程序能否支持搜索同一个路由器下的设备的功能,例如mdns的某些功能能?
- 需求的场景描述(希望解决的问题) 通过中继器下面链接wifi智能设备,实现mdns的某些功能。例如实现mdns.starteasylink等功能。 - 希望提供的能力 加强与硬件通信的能力。特别是链接智能wifi设备这块。让开发者能够实现类似米家的功能。
2018-06-11