我正在尝试发送一个 JSONP Ajax 请求(从 client.htm 到 proxy.htm),该请求由代理页面接收,该页面创建另一个不同的 Ajax JSONP 请求到服务(proxy.htm ---> service.php) . 目前代理页面从服务接收 JSON 格式对象,但我坚持将对象返回到第一个初始 Ajax 请求。以下是我尝试运行的示例代码。Javascript可以做到这一点吗?如果是这样,我怎么能将对象返回给clientCallback函数。
客户端.htm
// CLIENT ---> PROXY
$(document).ready(function () {
$.ajax({
type: 'GET',
url: 'http://localhost/jsonp_proxy/listener.htm',
dataType: 'jsonp',
jsonpCallback: "clientCallback",
success: function (theData) {
alert("Success");
},
error: function (xhr, ajaxOptions, thrownError) {
alert("Error");
}
});
});
window.clientCallback = function(results) {
alert(results.uid);
}
代理.htm
// PROXY ---> SERVER
$(document).ready(function () {
$.ajax({
type: 'GET',
url: 'http://localhost/jsonp_server/service.php',
dataType: 'jsonp',
jsonpCallback: "proxyCallback",
success: function (theData) {
// alert("Success");
},
error: function (xhr, ajaxOptions, thrownError) {
// alert("Error");
}
});
});
window.proxyCallback = function(resultData) {
// HOW TO CALL CLIENT CALLBACK FUNCTION
}
服务.php
<?php
echo "proxyCallback("."{'uid': 123, 'username': 'jdirt', 'name': 'Joe Dirt'}".");";
?>