- 华为手机 微信小程序地图高精定位 走fail 返回404错误码
wx.getLocation 在华为部分机型 定位 返回404 type为gcj02 时定位 404 type为wgs84时 定位没有问题 wx.getLocation({ type: 'gcj02', isHighAccuracy: true, highAccuracyExpireTime: 3000, success: function (success) { let string = '/ws/geocoder/v1?' + 'key=' + app.globalData.key + '&location=' + success.latitude + ',' + success.longitude + app.globalData.SK; console.log("string", string); let MD5String = MD5(string); wx.hideLoading(); _this.setData({ latitude: success.latitude, longitude: success.longitude }) let data = { location: success.latitude + ',' + success.longitude, key: app.globalData.key, } HTTP.HTTPGET({ url: API.getAddressName, data: data, success: function (res) { _this.setData({ address: res.result.formatted_addresses.recommend }) }, fail: function (error) { }, fail: function() { // fail }, complete: function() { // complete } }) }, complete: function (com) { console.log('com', com) } }) } })
2020-12-02 - 小商店是否支持开通附近的小程序功能
https://developers.weixin.qq.com/doc/ministore/minishopquickstart/introduction.html
2020-10-29 - 小程序官网示例demo
小程序文档官网demo发现预览时包分包超限制 为什么 https://github.com/wechat-miniprogram/miniprogram-demo [图片]
2020-07-09 - 微信小程序怎么打开微店
微信小程序怎么打开微店
2018-12-22 - 生成带参数的小程序码怎么才能跳转到体验版
需求 后台生成带参数的小程序码 能否跳转到体验版小程序
2018-09-17