如何拆分我从我的webservice恢复的数据?

时间:2013-12-05 09:48:23

标签: ajax json

你能帮我解决这个问题吗?

var sendRequest = function(){

 $.ajax({     
 type: 'POST',    
 accept: 'application/json',
 url: 'http://easybusservices.cloudapp.net/EasWebService/EasWS.asmx/JSONReturn?',     
 contentType: 'application/json', 
 dataType:"json/text",
 data: JSON.stringify({ test: 'heahhaeh' }),
 success: function (data, status) {alert("success" + data);},     
 error: function(data, status){ alert("error" + data);
 }

我从数据中获得的价值是“成功{”测试“:”heahhaeh“} {”d“:null}” 现在我需要将其分解并保存测试:仅限heahhaeh。

我正在开发一款三星智能电视应用程序。

1 个答案:

答案 0 :(得分:0)

跨域XHR请求无效。只有JSONP。