我爱模板网 > 建站教程 > 小程序、公众号 >  uni-app公众号H5js-sdk:jweixin-module的使用,公众号地图map使用正文

uni-app公众号H5js-sdk:jweixin-module的使用,公众号地图map使用

之前,我爱模板网做了一个功能:uni-app H5端实现移动地图显示当前地图中心位置的坐标和地址。但是上线之后,发现IOS下问题比较大:
    1、经常无法获取经纬度
    2、如果定位了,无论成功与否,皆会导致定位之后,所有联网的图片无法加载(就好像被定位阻塞了)

那么只能使用微信js-sdk的定位方法了。

安装

1、因为uni-app如果没有使用npm的方法,根目录就没有package.json,首先在项目根目录运行
npm init
如果已经有package.json,直接进入下一步

2、安装jweixin-module
npm i  jweixin-module -S
此外,您也可以直接下载:https://unpkg.com/jweixin-module@1.4.1/out/index.js

使用

1、在您的js公共文件夹下创建wechat.js
import Vue from "vue";
var jweixin = require('jweixin-module');
export default {
    //调试模式
    debug:false,
    //权限
    jsApiList:[
        'getLocation'
    ],
    //判断是否在微信中
    isWechat: function() {
        var ua = window.navigator.userAgent.toLowerCase();
        if (ua.match(/micromessenger/i) == 'micromessenger') {
            return true;
        } else {
            return false;
        }
    },

    //初始化sdk配置
    initJssdk: function(callback, url) {
        if (!this.isWechat()) {return;}
        //服务端进行签名 ,可使用uni.request替换。 签名算法请看文档
        Vue.prototype.$func.api(Vue.prototype.$apiConfig.wxjssdk(),{
            url:url || location.href.split('#')[0],
        },res => {
            jweixin.config({
                debug: res.debug || this.debug,
                appId: res.appId,
                timestamp: res.timestamp,
                nonceStr: res.nonceStr,
                signature: res.signature,
                jsApiList: res.jsApiList || this.jsApiList
            });
            //配置完成后,再执行分享等功能
            if (typeof callback === 'function') {
                callback(res.data);
            }
        })
    },
    
    //准备就绪
    ready:function(callback, url)
    {
        if (!this.isWechat()) {return;}
        this.initJssdk(function(){
            jweixin.ready(function() {
                //配置完成后,再执行
                if (typeof callback === 'function') {
                    callback(jweixin);
                }
            })
        }, url)
    },
    
    closeWindow:function() {
        this.ready(function(wx) {
            wx.closeWindow();
        })
    },
    
    //在需要定位页面调用
    location: function(success, fail) {
        this.ready(function(wx) {
            wx.getLocation({
                type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
                success: function (res) {
                    if (typeof success === 'function') {
                        success(res);
                    }
                },
                fail:function(res){
                    if (typeof fail === 'function') {
                        fail(res);
                    }
                }
            });
        });
    }
}
2、main.js加载该文件,这样就可以全局使用wechat.js了
// #ifdef H5
import wechat from './static/js/wechat.js';
Vue.prototype.$wechat = wechat;
// #endif
3、页面中使用
// #ifdef H5
//获取定位经纬度
const that = this;
if (this.$wechat && this.$wechat.isWechat()) {
    this.$wechat.location(function (res) {
        that.latitude = res.latitude;  //纬度
        that.longitude = res.longitude; //经度
    });
}
// #endif
至此,定位总算解决了!


部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!
上一篇:微信公众号js接口,实现图片的上传(拍照+本地相册) 下一篇:微信弃用bindgetuserinfo,wx.getUserProfile使用示例
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
选择头像:
最新评论

猜你喜欢