重新加载另一个gsp的div内的一个gsp
我有一个gsp页面说search.gsp有一个名为“ResultContentAsFacets”的div。 div显示另一个gsp的内容。 这另一个gsp被命名为subSearch.gsp。 现在在这个页面中,我有一个链接,它调用subSearch动作,以便重新加载subsearch.gsp。 但问题是它也重新加载了search.gsp。 我该怎么办??
用户tim_yates基本上是正确的,但你可能需要formRemote而不是remoteLink。
基本上你会在search.gsp中找到(从文档中获取:http://grails.org/doc/latest/ref/Tags/formRemote.html并做了一些更改)
<g:formRemote name="search"
update="ResultContentAsFacets"
method="GET"
url="[controller: 'changeThis', action: 'subSearch']">
<!-- your input/ search fields -->
</g:formRemote>
<div id="ResultContentAsFacets">
<!-- this div is updated with the result of the submit -->
<!-- you may already render subSearch.gsp on first pageload here.
Just pass all entries to the view in your search action -->
</div>
在你的“ChangeThisController”中创建一个执行实际搜索的动作subSearch
但不是返回结果,而是渲染模板(subSearch.gsp):
def subSearch() {
// perform search and store collection in variable called "result"
// (change naming at your will)
render template: 'subSearch' model: [result: result]
}
Your div whit id id =“ResultContentAsFacets”将被更新,而无需重新加载整个页面
我的示例不处理在浏览器中关闭javascript的错误情况或用户。 如果你想在你的搜索结果中分页,还有更多的事情要做......但这是可能的。 我也不确定是否必须包含jquery或者执行<r:require module="jquery">
来使用<g:formRemote>
标记。 在文档中查找它。 希望这可以帮助...