ui:msg 与 GWT 中的字典
是否可以在 GWT 中将 ui:msg 与字典或自定义 HashMap 一起使用? 如果是这样怎么办?
谢谢 一个
Is it possible to use ui:msg with a Dictionary or a custom HashMap in GWT?
If so how?
Thanks
A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道这是否可行,但你可以做的是使用 POJO。
例如:
其中 MyMessages 是一个包含 getHello() 方法的类,该方法返回一个字符串。因此,您将把字典包装在 MyMessages 类中
Dont know if that is possible, but what you can do is using POJO's.
like:
Where MyMessages is a class containing a method getHello() which returns a string. So you will be wrapping the dictionary inside the class MyMessages