简单编组解组对象
json 支持是 delphi 2009 和 delphi 2010 的新功能之一。我想知道是否有任何简单的函数可以像超级对象库中那样直接在字符串和对象之间进行编组/解组。
例子:
MyKnownObject := FromJSON('{name:"francis", surname:"lee"}');
json support is one of the new features of delphi 2009 and delphi 2010. I want to know if it's there any simple function to marshalling/unmarshalling directly between string and object like in superobject library.
Example:
MyKnownObject := FromJSON('{name:"francis", surname:"lee"}');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此处。下面是有趣的部分:
您也可以看到 这里 Adrian Andrei(DataSnap 架构师)提供的一个更复杂的示例以及自定义封送处理的示例 此处。
See here. Bellow is snipped the interesting part:
Also you can see here a more complicated example by Adrian Andrei (the DataSnap architect) as well as an example of custom marshaling here.
将字符串直接反序列化为
TJSONObject
Unserialize a string directly to a
TJSONObject