亲爱的Grails专家
我将发布列表发送到我的gsp视图页面。我可以很好地看到列表,但是在将其中一个出版物添加到书籍列表并呈现出版物gsp视图页面之后,出版物列表不会被视为出版物列表而是被视为字符串。因此,当我试图获得每个出版物时,它会给我字符。
我使用的是grails 2.2.0版本。
我在这里发送控制器条目中的出版物:
def books{
def unit = Unit.get(params.id)
def period = Period.get(params.periodId)
def publications = []
if (unit) {
def units = unit.downHierarchy().id
units.removeAll { null }
publications = Publication.publicationsOfUnits(units)?.listDistinct()?.findAll{it.date.getAt(Calendar.YEAR) == period.year}?.sort{ it.date }
}
[publications : publications, id: unit.id, unitId: unit.id, periodId: period.id]
}
这是我的观点页面:
<table>
<g:each in="${publications}" var="p">
<g:if test="${p instanceof publicationBook}">
<tr>
<td>${p.authors.join(",")}</td>
<td>${p.title}</td>
<td>
<a href="#" onclick="$('#author').val('${p.authors.join(',')}');$('#titleAndSubtitle').val('${p.title}');$('#unitId').val('${unitId}');$('#periodId').val('${periodId}');$('#id').val('${unitId}');bookForm.submit();">Add to Books</a>
</td>
</tr>
</g:if>
</g:each>
</g:table>
这里我将出版物添加到书籍中:
def saveBook = {
saveEntry("book", new Book())
render(view:"books", model: params)
}
这里是书籍表格,我再次将出版物清单发送给控制台进行渲染:
<g:form name="bookForm" controller="entries" action="saveBook" class="default" method="post">
<g:hiddenField name="entryId" value="${entry?.id}"/>
<g:hiddenField name="unitId" value="${unitId}"/>
<g:hiddenField name="periodId" value="${periodId}"/>
<g:hiddenField name="publications" value="${publications}"/>
<div class="buttons">
<button class="button icon icon_arrow_right leave_empty" onclick="$('#leaveEmpty').val('true');bookForm.submit();"
</div>
</g:form>
我非常感谢任何建议或帮助解决问题..
答案 0 :(得分:0)
您没有在render(view:"books", model: params)
传递正确的模型。
使用redirect(action:"books", id: id)
,或使用publications
列表等填充模型,就像在books
操作中一样