1. wx is not undefined javascript
解決方案: 在引入微信 JS-SDK 前,設置 define 和 require 值爲 null。代碼以下:java
1 <script type="text/javascript"> 2 define = null; 3 require = null; 4 </script> 5 <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
2. 微信受權,獲取 code。使用 window.location.href 重定向api
1 // 此地址須要公衆號後臺管理中,接口權限==>網頁受權==>網頁受權域名 設置; 使用 encodeURIComponent 編碼回調地址 2 let backUrl = '微信受權後的回調地址'; // 例如 test.com/authorize, 3 let WXUrl = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + APPID 4 +"&redirect_uri = " + encodeURIComponent(backUrl) + 5 "&response_type = code" + 6 "&scope = snsapi_userinfo" + 7 "&state = STATE#wechat_redirect"; 8 9 window.location.href = WXUrl;
3. 經過 config 接口注入權限驗證配置 iOS 平臺必須保證 timestamp 參數是字符串
微信
1 wx.config({ 2 debug: true, 3 appId: '', 4 timestamp: timestamp + ‘’, // 必填,生成簽名的時間戳。保證是字符串類型 5 nonceStr: '', 6 signature: '', 7 jsApiList: [] 8 });
4. iPhone 平臺使用 H5 的 history 路由模式,頁面跳轉以後,window.location.href 方法獲取的地址始終是第一次進入頁面的 url ,致使調用 JS-SDK API 時失敗。能夠使用 hash 路由模式解決這個問題,可是 hash 路由會在 url 後添加 # 。app