grails - 从formRemote返回Object或id

时间:2012-11-30 19:54:22

标签: javascript forms grails

我有一个grails应用程序,在用户输入新域对象(Sync)的名称后,我想保存对象,移动到同一页面上的片段,并更改div的css类(到js colorbox,如果那很重要)。

为此,我使用锚来设置类并移动到片段并使用JS提交g:formRemote。但是,formRemote不会返回创建的对象。

部分gsp:

<g:formRemote url="[controller: 'Main', action:'createNewSync']" name="newSyncForm"   >
<g:field type="text" name="newSyncName" />

<a id="ns-link" href="#outline_content" class="outline">
<script>
  $('#ns-link').click(function(){
     $('#newSyncForm').submit();
  });
 </script>
 </g:formRemote>

稍后在gsp中,我们想要使用带有outline_content的colorbox。请注意,需要syncInstance.name。

<script>
$(document).ready(function(){
$(".outline").colorbox({inline:true, width:"1140px", escKey:false, overlayClose:false});
</script>

<div id="sync" class="hidden">
<div id='outline_content' style='padding:10px; background:#fff;' >
    <h2 class="nameheader"><strong style="color:#000;">New Sync:</strong><span class="editable_textile">${syncInstance?.name}</span></h2>
        <div class="number1"><img src="../images/1.png" border="0" /></div>

.....

控制器:

def createNewSync(){
    params.name = params.newSyncName
    def syncInstance =  Sync?.findByName(params.newSyncName) 

if (!syncInstance)
{
        syncInstance = new Sync(params)
        def u = User.findByUsername(springSecurityService.principal)
        syncInstance.properties['createdBy'] = u
        syncInstance.properties['createdDate'] = new Date().toString()
        syncInstance.properties['lastRunTime'] = "Never"
        syncInstance.properties['lastRunOutcome'] = "---"
        syncInstance.properties['isScheduled'] = false
        syncInstance.properties['isComplete'] = false

        syncInstance.save(failOnError: true, flush: true)

    }        
    //doesn't send anything back to page if it's been called remotely
    [syncInstance: syncInstance]
}   

是否有任何方法可以使用此方法获取对稍后在页面上使用的创建对象的引用?如果没有,还有另一种方法可以实现这一目标吗?

1 个答案:

答案 0 :(得分:0)

好的,这就是我要做的事情

1)为同步创建模板。它将包含在div中的所有内容,其id为“sync”,但不是div本身。

2)更新formRemote标记以更新div <g:formRemote update="sync" ... />

3)在控制器render(template: "path/to/template", model:[syncInstance: syncInstance])

中渲染模板