我有一个ajax请求如下:
permissionRequestModel.showApprovers = function () {
$.ajax({
url: "http://ec6484646848compute-1.amazonaws.com/api/Request/permission?appid=1&opertype=requestor,
type: "GET",
contentType: "application/json",
dataType: "json",
error: function(){
alert("failed");
},
success: function (data) {
alert("Success");
}
});
};
这是失败的,但请求的 URL 正在正确地在 chrome 上的 Rest Client 中返回 JSON 响应。我在这里做错了什么?