我尝试使用以下网址中的ajax获取响应数据
http://recipesid.appspot.com/api.user?method=user.query&email=dam.le@anttek.com
但它无论如何都不会运行。
帮我解决问题
$.ajax({
type: "GET", //rest Type
dataType: 'jsonp', //mispelled
url: "http://recipesid.appspot.com/api.user?method=user.query&email=dam.le@anttek.com",
async: false,
contentType: "application/json; charset=UTF-8",
success: function (msg) {
alert(msg);
},
error:
function(data){
alert("error");
} });
提前致谢!!
答案 0 :(得分:0)
感谢所有答案。但我得到了一个解决方案。
我必须允许" Access-Control-Allow-Origin"在我的谷歌应用引擎中。