我有一个gsp页面说search.gsp有一个名为'ResultContentAsFacets'的div。 div显示另一个gsp的内容。另一个gsp名为subSearch.gsp。现在在这个页面中,我有一个调用action subSearch的链接,以便重新加载subsearch.gsp。但问题是它还重新加载了search.gsp。我该怎么办?
答案 0 :(得分:0)
用户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.gsp):
def subSearch() {
// perform search and store collection in variable called "result"
// (change naming at your will)
render template: 'subSearch' model: [result: result]
}
您的div whit id =“ResultContentAsFacets”将会更新,无需重新加载整个页面
我的示例不处理错误情况或在浏览器中关闭了javascript的用户。如果你想在搜索结果中加入分页,还有更多的事情要做......但这是可能的。
我也不确定您是否必须包含jquery或<r:require module="jquery">
使用<g:formRemote>
标记。在文档中查找。
希望这会有所帮助...