|
@@ -19,9 +19,18 @@
|
|
|
"code": GetQueryString('code')
|
|
|
}
|
|
|
alert(GetQueryString('code'))
|
|
|
- ajaxData("https://readertest.lingjiao.cn/activity/wx/ucenter/wxlogin", '', jionData, function(userData) {
|
|
|
- alert(userData.data);
|
|
|
- })
|
|
|
+ $.ajax({
|
|
|
+ url: "https://readertest.lingjiao.cn/activity/wx/ucenter/wxlogin",
|
|
|
+ type: 'GEt',
|
|
|
+ contentType:'application/json;charset=utf-8',
|
|
|
+ data: jionData,
|
|
|
+ success: function (userData) {
|
|
|
+ alert(JSON.stringify(userData))
|
|
|
+ },
|
|
|
+ error: function () {
|
|
|
+ alert('失败')
|
|
|
+ }
|
|
|
+ });
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|