我想用javascript同步調用struts2動作我發現了幾個例子,但他們都沒有工作。從javascript同步調用Struts2動作
我有工作的唯一的事情就是打電話的動作異步這樣的:
function toggel(id) {
var url = "./ToggelProcess.action";
$.post(url, {id : id}, function (resp) {
// resp is the response from the server after the post request.
});
}
需要像這樣的工作的例子。
爲什麼你認爲你希望它是同步的?在大多數情況下,這不僅是一種不好的做法,而且這種行爲已被棄用。 – 2016-03-05 16:17:30