0

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

为此,我使用锚来设置类并移动到片段并使用 JS 提交 ag: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 的颜色框。请注意,需要 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]
}   

有没有办法使用此方法获取对稍后在页面上使用的已创建对象的引用?如果没有,还有其他方法可以做到这一点吗?

4

1 回答 1

0

好的,这就是我要做的

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

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

3) 在控制器中渲染模板 render(template: "path/to/template", model:[syncInstance: syncInstance])

于 2012-12-01T00:11:57.073 回答