我想列出地址和onChange事件我發送地址ID並返回用戶列表。Grails遠程函數和Ajax
<g:select name="AddressID" from="${address}" optionKey="id" optionValue="address"
onchange="${ remoteFunction(
action:'testMe',
params:'\'id=\' + this.value' ,
update:'show')}">
</g:select>
我把這個div叫做「show」。
<div id="show">
<g:each in="${users}" status="i" var="C">
<h3>${C}</h3>
</g:each>
</div>
然而,當我點擊列表框,我得到以下錯誤的項目: description The requested resource (/MyTest/WEB-INF/grails-app/views/test/testMe.jsp) is not available.
我一個remoteFunction內的更新屬性的理解是,它是獲取div的名字remoteFunction調用完成後刷新。
謝謝。