gpt4 book ai didi

grails - 在 grails 3.2.8 中将数据从 Controller 传递到 gsp

转载 作者:行者123 更新时间:2023-12-02 14:29:37 24 4
gpt4 key购买 nike

我正在尝试将值从 Controller 传递到 gsp。页面中没有显示任何内容。

索引.gsp

<html>
<head>
</head>
<body>
<h1>"${greeting}"</h1>
<h1>${greeting}</h1>
</body>
</html>

Controller :

def index = {
render(template:'index',model: [greeting:test])
}

谢谢普加

最佳答案

因此,TestPassValueController 中的 index 操作将如下所示:

def index() {
[greeting: 'test']
}

\grails-app\views\testPassValue\index.gsp 中,您将拥有:

<h1>${greeting}<\h1> 

关于grails - 在 grails 3.2.8 中将数据从 Controller 传递到 gsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43901875/

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