- 真机调试,只有我的开发者账户可以获取授权提示,其他人都提示未使用您任何信息
真机调试,只有我的开发者账户可以获取授权提示,其他人的账号都提示未使用您任何信息。求大神指点。 user.js: callback: function (res) { //打印设备的权限 wx.openSetting({ success(res) { console.log("open settings success") // console.log(res.authSetting) }, fail() { console.log("open failed") // console.log(res.authSetting) } }) }, user.wxml: <button open-type="getUserInfo" bindgetuserinfo="callbackUserInfo" open-type="openSetting" bindopensetting="callback">设置</button>
2018-11-04 - 新人求助,电脑调试button正常显示,到了手机上button被地图覆盖
新人求助,扫码button在电脑调试正常,在手机上button被地图覆盖了,求高手指点。 [图片] index.wxml: <view class='container'> <view class='search'> <input placeholder='请输入关键字搜索' confirm-type='search' ></input> </view> <view class='mapcontainer'> <map id='map' longitude='{{longitude}}' latitude='{{latitude}}' scale='14' show-location style='width:100%;height:550px;'></map> </view> <view class='buttonQr'> <button size='mini' plain='true' bindtap='btnQrClick'>扫码</button> </view> </view> index.wxss: /**index.wxss**/ .container{ display: flex; background-color: transparent; } .search{ border: 1px inset #8e2323; width: 60%; height: 20%; left: 20%; background-color: transparent; } .mapcontainer{ width:100%; height:100%; z-index: 4; } .buttonQr{ border: 1px; position: absolute; left: 0px; top:0px; z-index:5; }
2018-11-01 - 新手求助!小程序如何让一部分人能用?
小程序发布后,如何让一部分人能用而不是所有人都能看到都能进入应用?
2017-07-09