作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从 Controller 传递来查看的状态码。我的查看代码具有if / else条件。
<g:if test="${code=='something'}">
<g:link action="StartServer">
<input type="button" value="Start Server" class="stopimg" id="startServer" />
</g:link>
</g:if>
<g:else>
<g:link action="StopServer">
<input type="button" value="Stop Server" class="runimg" id="stopServer" />
</g:link>
</g:else>
code
获取
controller
,我的代码值在里面
def index() {}
最佳答案
在 map 中返回您需要的所有内容。
def index {
...
return [code:variableContainingCode]
}
关于grails - 如何从 Controller 传递变量的值以查看grails?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16572237/
我是一名优秀的程序员,十分优秀!