收藏
回答

wx.config 调取提示跨域,为什么?

//微信公众平台里面调取扫一扫功能,突然无法调起来了。然后我在微信开发者工具里面调试,提示跨域

$(document).ready(function() {
          $.ajax({
            url: _getWechatSignUrl,
            data: {
              url: tokenUrl
            },
            dataType: "json",
            success: function(res) {
              wxConfig(res.appId, res.timestamp, res.nonceStr, res.signature);
            }
          })
        })


        function wxConfig(_appId, _timestamp, _nonceStr, _signature) {
          wx.config({ 
            appId: _appId, 
            timestamp: _timestamp, 
            nonceStr: _nonceStr,
            signature: _signature,
            jsApiList: ['scanQRCode']
          });
        }

回答关注问题邀请回答
收藏

1 个回答

  • Charlie
    Charlie
    03-25

    ajax url传的是"ws://127.0.0.1:35989"吗,那协议就是ws,应该要用new WebSocket()吧,jq的ajax是基于XMLHttpRequest实现的

    03-25
    有用
    回复
登录 后发表内容