调用微信内置 wx.config 配置问题

var link = location.href;
$.ajax({
  url: "/WxJSSDK/WxJS_SDK.aspx/GetInfoMation",//后台给你提供的接口
  type: "Post",
  data: "{ 'url': '"+link+"' }",
  async: false,
  contentType: "application/json; charset=utf-8",
  dataType: "json",
  success: function (data) {
    var datad = JSON.parse(data.d); //转译为Json字符串
    wx.config({
      debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来
      appId: datad.appid, // 必填,公众号的唯一标识
      timestamp: datad.timestamp, // 必填,生成签名的时间戳
      nonceStr: datad.noncestr, // 必填,生成签名的随机串
      signature: datad.signature,// 必填,签名,见附录1
      jsApiList: [
        "openLocation"
      ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
    });
    wx.error(function (res) {
      layer.msg(res);
    });
  },
  error: function (error) {
    layer.msg(error)
  }
});

你可能感兴趣的:(微信公众号)