使用 UIDL 和 vaadin UI 开发JSON
任何人都可以发布一个关于如何在 vaadin 框架中使用 UIDL 和 JSON 创建组件、窗口、表单的示例。
假设我得到了[{"name":"button","caption":"MyBotton"}]
。此示例将创建一个按钮。
谢谢
Could anyone please post an example on how to create the components, windows, forms using UIDL and JSON in vaadin framework.
Lets say I am given [{"name":"button","caption":"MyBotton"}]
. This example will create a button.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,您不必担心框架发送的 JSON 中的详细信息。 Book of Vaadin 有一个简短的关于所使用的 JSON 的章节。如果您确实需要研究生成的 JSON(不过,我想不出什么情况),我会假设最简单的检查方法是生成一些基本的 Vaadin 应用程序,其中包含您感兴趣的详细信息以及使用 Firebug 等来捕获和检查 HTTP 响应中的 JSON 流量。不要认为任何地方都记录了详细信息,如果您想了解特定组件的详细信息,您必须检查实现代码或消息。
Normally you should not have to bother about the details in the JSON sent by the framework. Book of Vaadin has a short chapter about the JSON used. If you really have a need to study the generated JSON (I can't think of a situation when, though), I would assume the easiest way to check is to generate some basic Vaadin apps containing the details you're interested in and the use e.g. Firebug to capture and check the JSON traffic in the HTTP responses. Don't think the details are documented anywhere, you have to check the implementation code or the messages if you want to know details for specific components.
简短的回答 - 你不能那样做。
长答案 - 你不应该这样做。
Short answer - you can not do that.
Long answer - you should not do that.