从 WCF 返回 JSON 对象
我正在开发一个 wcf。该服务将返回一个序列化的 JSON 对象,其中包括以下结构:
{
'status':{'id':0,'code':1},
'data' : object (data object)
}
制作此结构的主要问题是,如何在此 JSON 结构中使用对象(类对象)。
请有人指导我如何在此 JSON 结构中传递“类对象”。
提前致谢.....
I am working on a wcf.The service will return a serialized JSON object which will include the following structure:
{
'status':{'id':0,'code':1},
'data' : object (data object)
}
Main problem to make this structure is, how to use object(class object) in this JSON structure.
Please somebody guide me how to pass the "class object" in this JSON structure.
Thanks in advance.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提到的“对象(数据对象)”也需要采用有效的 JSON 格式。您可以提供有关此对象的更多信息。告诉你想要在对象中保存什么。那么我可以提供更多详细信息。
例如,
您应该始终使用 JSON Lint 来验证 json 结构。
'object (data object )' mentioned by you also required to be in valid JSON format. You can provide more information about this object. Tell what you want to save in object. I can provide more details then.
For Example,
You should always use JSON Lint to validate the json structure.