如何调用GXT中的其余服务?

发布于 2024-11-16 04:30:45 字数 253 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人接听 2024-11-23 04:30:45

您认为检索 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文