gpt4 book ai didi

grails - 类groovy.lang.MissingPropertyException消息没有这样的属性:类列表:gtunes.Album可能的解决方案:id,class,dirty

转载 作者:行者123 更新时间:2023-12-02 15:52:21 29 4
gpt4 key购买 nike

专辑的index.gsp

它在行号上给出错误。 5,我在.HTML文件中运行的相同代码正常运行,但是在index.jsp中出现错误,我不明白为什么会发生。

  <div class="container-fluid">
<h3><p class="text-center">Album list</p></h3>
<ul id="album" class="list-group">
<g:each var="album" in="${myvar}">
<button type="button" class="list-group-item" onClick="editalbum('${album.list}')">
<span class="badge">${album.title}</span>
</button>
</g:each>
</ul>
</div>
</body>
</html>


AlbumController.groovy
我有def abc,它接收相册列表并将其呈现到索引页面
 package gtunes
import static org.springframework.http.HttpStatus.*
import grails.transaction.Transactional

@Transactional(readOnly = true)
class AlbumController {

static allowedMethods = [save: "POST", update: "PUT", delete: "DELETE"]

def index(Integer max) {
def abc = Album.list(max:10);
render(view:"index", model:[myvar:abc]);
//params.max = Math.min(max ?: 10, 100)
//respond Album.list(params), model:[albumInstanceCount: Album.count()]
}[Grails error][1]

https://drive.google.com/open?id=0B9gjSzsLSnClRFZVbWE1MWU0aDQ
这是错误的图像

最佳答案

对象'album'没有列表,您可能试图编辑该对象'album'的一个实例,尝试以下操作并相应地调整JS代码:

onClick="editalbum('${album}')"

或按ID例如:
onClick="editalbum('${album.id}')"

关于grails - 类groovy.lang.MissingPropertyException消息没有这样的属性:类列表:gtunes.Album可能的解决方案:id,class,dirty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37292905/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com