如何在 Grails 的控制器之外使用 g.message?
可能的重复:
Grails - 从控制器获取消息值
我想使用 < a href="http://grails.org/doc/latest/ref/Tags/message.html" rel="nofollow noreferrer">g.message() 内的方法Service
类,而不是Controller
。 但我不能。
代码示例:
// this is a method OUTSIDE a Controller
def show = {
def msg = message(code:"foo.bar") // I'm getting error here
}
可以这样做,还是我必须使用旧的 ResourceBundle
类?
Possible Duplicate:
Grails - getting a message value from controller
I want to use a g.message() method inside a Service
class, not a Controller
.
But I can't.
Code example:
// this is a method OUTSIDE a Controller
def show = {
def msg = message(code:"foo.bar") // I'm getting error here
}
It's possible to do this, or I have to use the old ResourceBundle
class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另一个问题有一个完美的答案:
感谢 fabien7474
Another question have a perfect answer:
Thanks to fabien7474