我正在使用 ajax 调用从托管在某个服务器上的 WebService 执行 POST 和 GET 操作。
由于跨域问题,我正在使用 dataType:"jsonp"。我可以在 fiddler 上看到 Web 服务发送的数据。我想访问从服务中获得的数据,但我不知道该怎么做。
这是我的ajax调用:
$.ajax({
type: method,
url: "url",
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
jsonp: false,
jsonpcallback:function(data){}, //What am I supposed to write here so that I can get the JSON data from Padded json
success: successHandler,
error: errorHandler
});
这是我从服务收到的 json 响应的近似值:
{"Ideas":[
{"Message":null,"IdeaId":1},
{"Message":null,"IdeaId":1}
]
}
任何形式的帮助将不胜感激。我搜索了很多帖子,但无法通过。
先感谢您。