//微信公众平台里面调取扫一扫功能,突然无法调起来了。然后我在微信开发者工具里面调试,提示跨域
$(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']
});
}
ajax url传的是"ws://127.0.0.1:35989"吗,那协议就是ws,应该要用new WebSocket()吧,jq的ajax是基于XMLHttpRequest实现的