我是jQuery的新手,目前正在嘗試實現ajax調用,它將永久輪詢服務器並請求一些數據。阿賈克斯工作正常,因爲我能夠打我的服務器端控制器的方法,但添加後數據:gameLink param它停止工作。這裏是我的jQuery函數:春季mvc環境中的jQuery ajax調用數據參數問題
window.setInterval(pollActiveParticipants, 10000);
function pollActiveParticipants() {
$.ajax({
type: "GET",
url: "pollActiveParticipants",
data: {"gameLink": $gameLink }, //this is where i need help!
dataType: 'json',
success: function(data){
$.each(data, function(index, value) {
'<p>' + value.username + '</p><br>';
});
}
});
}
的$ gameLink存在於JSP下面我幾句我使用它作爲
<br>
Other participants can access the game on the following url: ${gameLink}
<br>
什麼是正確的語法,添加$ gameLink按要求PARAM或者我做錯了什麼?
不用客氣。它避免了複雜性。 –