gpt4 book ai didi

grails - SubmitToRemote在Grails中不起作用

转载 作者:行者123 更新时间:2023-12-02 14:41:07 25 4
gpt4 key购买 nike

我仍然对Grails还是陌生的,所以请多多包涵。
我的GSP上有这个

<div class = "reviewForm">
<g:render template="reviewForm"/>
</g:if>

<div class="actions">
<g:submitToRemote url="[controller:'game', action:'editReview']" update="reviewForm" value="Edit"/>
</div>

我想发生的是,当我单击按钮时,我希望将reviewForm模板更改为editReview.gsp,在其中显示评论的内容,以便我可以编辑内容。截至目前,我的editReview.gsp只是空的,我只想查看表单已更改,但它没有

我有我的editReview操作log.println以确保它是否在操作中进行并且确实

最佳答案

我正在尝试,发现Rather than class we must be using id field to specify replacement div which will contain the data received from AJAX request.
看到下面修改的代码:

<div id= "reviewForm">
<g:render template="reviewForm"/>
</g:if>

<div class="actions">
<g:submitToRemote url="[controller:'game', action:'editReview']" update="reviewForm" value="Edit"/>
</div>

您还可以阅读更多grails文档 here

最后但并非最不重要的一点是, submitToRemote还提供了一些好事件,例如之前,之后以及许多其他事件,用于指定要调用的JS函数。

希望能帮助到你!

关于grails - SubmitToRemote在Grails中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34252938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com