我是 Grails 的新手,仍在学习。
我有以下模型代码:
class Book {
static constraints = {
}
String title
String author
}
和控制器:
class KillController {
def index() { render "kill world" }
def view() {
def book = new Book( author: "Mike", title: "nuff sed")
[ model: book ]
}
}
对于view.gsp
,我有以下内容:
<html>
<body>
Author: ${ model.author }<br />
Title : ${ model.title }
</body>
</html>
一切正常,并且产生了正确的输出。但是,在 GSP 编辑器中,当我输入 时${ model. }
,我没有从 code-assist 获得任何建议。键入点后按 ctrl+space 无济于事。
不过,在里面按 Ctrl+space 可以${ }
工作,它可以正确识别model
为一个Book
对象。
GSP 编辑器中尚不支持模型的代码辅助吗?谢谢!:D