- 公众号的模板消息能够跳转到小程序指定页面(非首页)
https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1433751277 [图片] 公众号文档上pagepath参数,报错 "messageReturn": { "errcode": 40165, "errmsg": "invalid weapp pagepath hint: [D_vD.A0182ge31]" } 换成path后,能跳到小程序首页,如何跳转到指定页面,,求解答 https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=1440580727&docid=000e0262f845880ee2867b6195b800 这个帖子请关注回答一下,多谢多谢
2018-06-14 - canIUse,急
- index.js canIUse: wx.canIUse('button.open-type.getUserInfo'), - index.wxml <button wx:if="{{canIUse}}" open-type="getUserInfo" bindgetuserinfo="userInfoHandler"> </button> <view wx:else>请升级微信版本</view> 一般手机都是进if为真的情况,,而iphone6s 部分手机 进入 wx:else 分支,,有可能是什么问题
2018-06-08 - 小程序 map
地图组件map的 markers 的iconPath gif 图 在开发者工具上是动态的,在手机上不动,安卓ios都不动 iconPath: "/images/people.gif"
2018-05-30 - 地理位置如何更准确
步骤: 1、获取地理位置,得到经纬度, 2、将经纬度作为参数调 qqmapsdk.reverseGeocoder, 3、将经纬度转化为具体的文字性地理位置 问题: 第二步调qqmapsdk.reverseGeocoder时需要将经纬度做什么转化吗?? type类型为wgs84还是gcj02较为准确?? 直接转化的地理位置不精确,有些许偏移 wx.getLocation({ type: 'wgs84', success: function (res) { console.log(res); var latitude = res.latitude var longitude = res.longitude qqmapsdk.reverseGeocoder({ location: { latitude: res.latitude, longitude: res.longitude }, success: function (addressRes) { var address = addressRes.result.address; var province = addressRes.result.address_component.province; } }) } })
2018-05-11 - 小程序跳转到公众号
小程序底部菜单 如何 跳转到 公众号关注页面??求指教
2018-03-16 - 小程序支付
小程序支付可以更改商户号吗,之前是第三方申请的支付,现在想走官方的支付,请问小程序可以更改商户号吗????
2018-01-11 - 小程序支付可以更改商户号吗
小程序支付可以更改商户号吗,之前是第三方申请的支付,现在想走官方的支付,请问小程序可以更改商户号吗????
2018-01-11 - getLocation报错
按正常的代码写的,getLocation:fail:unsupported type,,,同样的代码,,安卓机部分获取不到地理位置,有部分可以,,请问这是什么原因???
2017-11-28 - getLocation:fail:unsupported type
wx.getLocation({ type: 'gcj02 ', success: function (res) { console.log(res.latitude+'--'+res.longitude); wx.setStorageSync('lat',res.latitude); wx.setStorageSync('lng',res.longitude); }, fail: function(res) { console.log(res); console.log('定位失败'); } }); 部分安卓机可以显示,但是有的手机就出现下面这种情况! wx.getLocation的两种type都尝试过了。 [图片]
2017-11-28