从 WCF 返回 JSON 对象

发布于 2024-11-08 12:00:14 字数 238 浏览 0 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(1

失与倦" 2024-11-15 12:00:14
{    
'status':{'id':0,'code':1},    
'data' : object (data object)    
}

您提到的“对象(数据对象)”也需要采用有效的 JSON 格式。您可以提供有关此对象的更多信息。告诉你想要在对象中保存什么。那么我可以提供更多详细信息。
例如,

{
    "data": {
        "key1": {
            "subKey1": "val1"
        },
        "key2": [
            {
                "subKey1": "subVal1",
                "subKey2": "subVal2"
            }
        ]
    }
}

您应该始终使用 JSON Lint 来验证 json 结构。

{    
'status':{'id':0,'code':1},    
'data' : object (data object)    
}

'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,

{
    "data": {
        "key1": {
            "subKey1": "val1"
        },
        "key2": [
            {
                "subKey1": "subVal1",
                "subKey2": "subVal2"
            }
        ]
    }
}

You should always use JSON Lint to validate the json structure.

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