我有一个名为Album
的实体与@ManyToOne
有Author
的关系。
好吧,我试图在我的html文件中显示作者的名字,如下所示:
Author is: #{a @SermonsIndex.sermonsByAuthor(albums.author.name)}${albums.author.name}#{/a}
出于某种原因,它打印的名称如下:[Elvis]
所以它会附加'['和']',而不是显示干净。(Elvis
)
你知道为什么吗?
答案 0 :(得分:1)
抱歉这样一个基本问题。当然,作为一个集合,我应该使用索引来获取它,例如:
Author is: #{a @SermonsIndex.sermonsByAuthor(albums[0].author.name)}${albums[0].author.name}#{/a}