1

我有一个javascript方法片段如下

var  tempUrl = "http://A.com:8081/TestService/serviceMethod";  
jQuery.ajax({  
url:tempUrl,  
type: 'POST',  
data:"getDatareq="+encodedata,  
contentType: 'application/json',  
dataType:'text',  
success:function(result){  
jQuery(".loadingMsg").html("");  
jQuery(".loadingMsg").hide();  
getApptDtls(result);  
},  
complete:function(result){  
jQuery(".loadingMsg").html("");  
jQuery(".loadingMsg").hide();  
jQuery(".popupContent").show();  
jQuery.unblockUI(); 

我将此方法包含在一个 html 中,该 html 托管在另一个服务器中,其 url为 http://B.com:8081

当我运行此 html 并调用此方法时,A.com 中的 serviceMethod 没有受到打击。这里可能是什么问题?

任何帮助是极大的赞赏。

4

1 回答 1

1

使用JSONP

JSONP 或“带填充的 JSON”是 JavaScript 中使用的一种通信技术。它提供了一种从不同域中的服务器请求数据的方法,由于相同的来源策略,典型的 Web 浏览器禁止这样做。

jQuery:

var  tempUrl = "http://A.com:8081/TestService/serviceMethod";  
    $.ajax({
         url:tempUrl,
         dataType: 'jsonp', // Notice! JSONP <-- P (lowercase)
         success:function(json){
             // do stuff with json (in this case an array)
             alert("Success");
         },
         error:function(){
             alert("Error");
         },
    });

PHP:

<?php
$arr = array("element1","element2",array("element31","element32"));
$arr['name'] = "response";
echo $_GET['callback']."(".json_encode($arr).");";  // 09/01/12 corrected the statement
?>
于 2013-04-11T06:13:56.547 回答