delphi 2010 datasnap从服务器返回树视图
Delphi Datasnap 2010 中是否可以将树视图从 Datasnap 2010 服务器传输到 DataSnap 客户端?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Delphi Datasnap 2010 中是否可以将树视图从 Datasnap 2010 服务器传输到 DataSnap 客户端?
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您也许可以将一些东西拼凑在一起,在服务器上创建并填充 VCL 控件,并将该控件序列化到客户端,但这看起来很难看。
我希望它返回代表树的数据,并使用它来填充客户端的树视图。
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.
通常的做法不是将 GUI 元素从服务器传输到客户端,而是仅传输数据(例如“数据传输对象”、DTO),可以使用 OmniXML,NativeXML 或 SuperObject。
表示层可以通过这种方式轻松更改(考虑 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.
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.