您好我試圖從成功的jquery獲取請求的get函數中獲取返回值。從Jquery的Get函數返回值
我已經嘗試了很多方法,但沒有成功。兩種形式,我有嘗試是:
1)
GetResultOutput = function() {
var outPut = "No Data Found";
var test = test();
return test["outPut"];
}
test = function()
{
outPut = "No Data Found";
**return** $.ajax({
type: "GET",
url: serviceUrl,
dataType: "xml",
success: function (xml) {
outPut = "done";
}
});
}
2)
GetResultOutput = function() {
outPut = "No Data Found";
$.ajax({
type: "GET",
url: serviceUrl,
dataType: "xml",
success: function (xml) {
outPut = "done";
}
});
return outPut;
}
但他們都沒有給我任何結果..
第二屆一個輸出我因爲沒有找到數據。並且這是優選的一個Google搜索時第一次一個......結果不確定
如果你希望這個調用是同步的,那麼AJAX是這個工作的錯誤工具! – Jamiec