可能重複:
pass parameter in g:remoteLink as result of javascript function通行證JavaScript變量到Grails的RemoteFunction
我試圖調用由一個按鈕的一個onclick觸發的remoteFunction電話,但點擊不調用該函數。我已經用警報啓動測試了onlick命令,並調用了該函數。這是我的代碼。
<input type="button" onclick="exportList()" value= "Export"/>
function exportList(){
var profile= document.getElementById('dropdown').value
${remoteFunction(controller: 'profile' , action:'export', params: "'profile=' + profile")}
}
當我拿出參數和VAR外形,功能仍然沒有叫......我的控制器和行動都是正確的,所以我不知道爲什麼我有這個錯誤。如果可以幫助,請提前致謝!
同樣與http://stackoverflow.com/questions/10023672/pass-parameter-in-gremotelink-as-result-of-javascript-function –