如何调用GXT中的其余服务?
我是 GXT 新手,现在我有一个公开为 REST 服务的后端。我可以对这些 REST 服务执行 get/post/put/delete 操作。
我的问题是:使用 GXT 的 REST 服务的最佳方式是什么?
我确实看到 GXT 官方网站告诉 GXT 支持 REST,而从他们的演示中,我只看到 xml 网格、json 网格等示例,它们只能从 xml、json 读取......
我还希望可以执行更新/删除/添加操作...
多谢。
I am new to GXT, and now I have a backend which exposed as REST services. I can do get/post/put/delete regarding those REST services.
My question is: Which is the best way to use those REST services from GXT?
I do see that GXT official site tells that GXT support REST, while from their demo, I only see samples like xml grid, json grid, which only read from xml, json...
I want also can do update/delete/add actions...
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您认为检索 JSON/XML 的 HTTP GET 与随后保存更改的 POST 或 PUT 之间有什么区别?使用 HttpProxy 的示例允许您设置用于从服务器获取数据的 url 和方法,并且可以使后续的 RequestBuilder 再次将数据发送回服务器。
REST 更多的是关于如何发送数据,而不是数据的格式 - 我不知道 xml/json 没有理由不能用于与 Rest-ful http 服务器通信。
What would you consider to be the difference between a HTTP GET that retrieves JSON/XML, and subsequent POSTs or PUTs to save changes? The examples with HttpProxy allow you to set the url and the method used to get the data from the server, and subsequent RequestBuilders can be made to send data back to the server again.
REST is more about how you send data than the format of the data - I know of no reason that xml/json can't be used to talk to a rest-ful http server.