作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题域模型设计如下
class Question {
List<Choice> choiceCollection;
static hasMany = [choiceCollection:Choice]
static mappping = {
choiceCollection(joinTable:false)
}
}
<g:each var="i" in="${(0..4)}">
<div class="fieldcontain required">
<label for="description">
Option ${i + 1}.
<span class="required-indicator">*</span>
</label>
<g:textArea name="choiceCollection[${i}].description" cols="40" rows="5" maxlength="2000" value="${questionInstance?.choiceCollection[i]?.description}"/>
</div>
</g:each>
Error evaluating expression [questionInstance?.choiceCollection[i]?.description]: Cannot invoke method getAt() on null object
最佳答案
我在尝试使用 Java 8 运行 grails (2.2.4) 时观察到这个错误。原因不是很明显。它隐藏在 grails.util.BuildSettings.groovy 的某个地方
当我恢复到 java 1.7 时,消息消失了。
关于grails - 评估表达式 : Cannot invoke method getAt() on null object 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12767230/
我是一名优秀的程序员,十分优秀!