delphi 2010 datasnap从服务器返回树视图

发布于 2024-09-06 05:25:02 字数 84 浏览 6 评论 0 原文

Delphi Datasnap 2010 中是否可以将树视图从 Datasnap 2010 服务器传输到 DataSnap 客户端?

谢谢

is it possible in Delphi Datasnap 2010 to transfer treeview from Datasnap 2010 server to DataSnap Client?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

满地尘埃落定 2024-09-13 05:25:02

您也许可以将一些东西拼凑在一起,在服务器上创建并填充 VCL 控件,并将该控件序列化到客户端,但这看起来很难看。

我希望它返回代表树的数据,并使用它来填充客户端的树视图。

NodeId  NodeName  ParentId
0       Root      -1
1       Node1     0
2       Node2     0
3       Node3     0
4       Node1.1   1

You might be able to kludge something together that creates and populates a VCL control on the server and serialize the control to the client, but it seems ugly.

I would have it return the data that represents a tree and use that to populate a treeview on the client side, instead.

NodeId  NodeName  ParentId
0       Root      -1
1       Node1     0
2       Node2     0
3       Node3     0
4       Node1.1   1
甜是你 2024-09-13 05:25:02

通常的做法不是将 GUI 元素从服务器传输到客户端,而是仅传输数据(例如“数据传输对象”、DTO),可以使用 OmniXMLNativeXMLSuperObject

表示层可以通过这种方式轻松更改(考虑 HTML 或移动客户端)。

DTO 的定义可以在 Martin Fowler 的 站点上找到。

Instead of transferring GUI elements from servers to clients, it is a common practice to transfer the data only (for example as 'data transfer objects', DTO) which can easily be (de-)serialized using open source libraries like OmniXML, NativeXML or SuperObject.

The presentation layer can change easily (think of HTML or mobile clients) this way.

The definition for DTO can be found on Martin Fowler's site.

七度光 2024-09-13 05:25:02

DataSnap 可以使用 JSON 序列化对象。我建议您创建一个树结构,在其中存储节点,然后相应地填充树视图。

不,您不能序列化 VCL TTreeView。

DataSnap can serialize objects using JSON. I recommend you create a tree structure in which you would store the nodes and then populate your treeview accordingly.

And no, you cannot serialize a VCL TTreeView.

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