在grails申请成功提交后,有什么方法可以清除字段?

<g:formRemote name="songList" url="[controller: 'SongList', action:'create']"
              update="[success: 'updateSongList', failure: 'error']">
    <div class="form-group">
        <label for="songList">Enter name of song list:</label>
        <g:textField name="title"  class="form-control" id="songList"/>
    </div>
    <g:submitButton name="Create" />
</g:formRemote>

还是我应该为此编写自定义代码?在grails标记g:formRemote中有onSuccess方法,但是在这种情况下如何正确使用却无法想象。

谢谢。

最佳答案

只需输入:

$('form[name="songList"]')[0].reset()

成功方法中使用:updateSongList()

10-06 01:22