使用微信js-sdk后加入wx.config代码后,不会弹出任何窗口

WBOY
Release: 2016-06-06 20:36:05
Original
1282 people have browsed it

如题,我在js代码中加入了如下代码后,不知道为何没有按照微信官方所说的会alert出信息出来。只会在console窗口打印。
var timestamp=$$('.timestamp').val(); var nonceStr=$$('.noncestr').val(); var signature=$$('.signature').val(); wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx5e87ddfd21ceb766', // 必填,公众号的唯一标识 timestamp: timestamp, // 必填,生成签名的时间戳 nonceStr: nonceStr, // 必填,生成签名的随机串 signature: signature,// 必填,签名,见附录1 jsApiList: ['chooseImage'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.checkJsApi({ jsApiList: ['chooseImage'], // 需要检测的JS接口列表,所有JS接口列表见附录2, success: function(res) { myApp.alert(res); }});
使用微信js-sdk后加入wx.config代码后,不会弹出任何窗口

回复内容:

如题,我在js代码中加入了如下代码后,不知道为何没有按照微信官方所说的会alert出信息出来。只会在console窗口打印。
var timestamp=$$('.timestamp').val(); var nonceStr=$$('.noncestr').val(); var signature=$$('.signature').val(); wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: 'wx5e87ddfd21ceb766', // 必填,公众号的唯一标识 timestamp: timestamp, // 必填,生成签名的时间戳 nonceStr: nonceStr, // 必填,生成签名的随机串 signature: signature,// 必填,签名,见附录1 jsApiList: ['chooseImage'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.checkJsApi({ jsApiList: ['chooseImage'], // 需要检测的JS接口列表,所有JS接口列表见附录2, success: function(res) { myApp.alert(res); }});
使用微信js-sdk后加入wx.config代码后,不会弹出任何窗口

这个微信的JS-SDK需要在微信浏览器中调试的,普通的浏览器不支持。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!