gpt4 book ai didi

c# - 验证包含字典的 JSON 对象

转载 作者:太空宇宙 更新时间:2023-11-03 15:39:59 25 4
gpt4 key购买 nike

我正在为 .NET 项目中的许多对象使用 JSON 签名,然后验证这些对象以确保它们包含正确数量的参数等。

但是,我不知道如何验证这个对象,因为“myActions”可以包含不同数量的元素。这个例子只有两个,但可以有更多,甚至只有一个(实际上,它总是有 1 到 5 个元素)。

{
"myCanvas": {
"width": 700,
"height": 700,
"initialScene": "scene1"
},
"myActions": {
"actionOne": {
"type": "web",
"text": "Open our homepage.",
"params": {
"linkUri": "http://your.server.name/"
}
},
"actionTwo": {
"type": "web",
"text": "Show item.",
"params": {
"linkUri": "http://your.server.name/items/123"
}
}
},
"otherStuff": {
"controlBoard": {
"format": [
{
"image": "image1",
"x": 0,
"y": 0,
"w": 700,
"h": 700
}
]
}
}
}

我该如何验证这一点,因为 JSON 签名可以采用五种形式之一?我可以将其称为字典并以这种方式对其进行验证吗?现在,我正在使用类似这样的东西(如下)w/a String.Format(因此所有额外的引号和大括号),但我在 5 个几乎相同的对象中使用这个相同的巨大签名,因为我知道 myActions 将包含 1 到 5 个元素。请记住,我无法控制顶部 JSON block 的格式;我只写验证器(如下所示)。如果“myActions”是一个数组,这将是小菜一碟。

""myMetadata"":{{   
""myCanvas"":{{
""type"":""object"",
""required"":true,
""properties"":{{
""width"":{{
""type"":""number"",
""required"":true
}},
""height"":{{
""type"":""number"",
""required"":true
}},
""initialScene"":{{
""type"":""string"",
""required"":true
}}
}}
}},
""myActions"":{{
""type"":""object"",
""required"":true,
""properties"":{{
{0}
}}
}},
""otherStuff"":{{
""type"":""object"",
""required"":true,
""properties"":{{
""controlBoard"":{{
""type"":""object"",
""required"":true,
""properties"":{{
""format"":{{
""type"":""array"",
""items"":{{
""type"":""object"",
""properties"":{{
""image"":{{
""type"":""string"",
}},
""x"":{{
""type"":""number"",
}},
""y"":{{
""type"":""number"",
}},
""w"":{{
""type"":""number"",
}},
""h"":{{
""type"":""number"",
}}
}}
}}
}}
}}
}}
}}
}}
}};

最佳答案

是的,这是可行的。一些 JSON 解析器/反序列化器确实支持几种不同的语法,以便反序列化为强类型字典,如您的示例(即您的第一个 JSON 片段)。

我知道我有。

将数据映射到 .NET 字典的最常见语法包括:

要么,

"SomeDictionary": [
{ "Key": "Key1", "Value": "Value1" },
{ "Key": "Key2", "Value": "Value2" },
...
]

或者,更直接地说,如您的情况:

 "SomeDictionary": {
"Key1": "Value1",
"Key2": "Value2",
...
}

(其中“Value1”、“Value2”等不需要是原始类型,也可以是对象或列表/数组等)

您的目标对象模型(即其类)因此看起来类似于:

public class MyParams
{
public string linkUri { get; set; }
// ...
}

public class MyAction
{
public string type { get; set; }
public string text { get; set; }
public MyParams @params { get; set; }
}

public class MyOuterObject
{
// other properties omitted
public IDictionary<string, MyAction> myActions { get; set; }
// ...
}

例如,参见:

(示例对象模型)

https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/ParserTests.cs#L123

(对应单元测试)

https://github.com/ysharplanguage/FastJsonParser/blob/master/JsonTest/ParserTests.cs#L729

'希望这有帮助,

关于c# - 验证包含字典的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30587001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com