我正在使用 Json.NET 创建其结构可能会改变的 json 定义。因此,我无法简单地序列化一个类并使用 Json to Linq 动态创建结构。我在使用 JObject、JArray、JProperty 等创建以下结构时遇到问题
{
'external_id':'UNIQUE_ID_222222222',
'firstname':'John',
'lastname':'Smith',
'customFields':
{
'custom1':'custom1 val',
'custom2':'custom2 val',
'custom3"':'custom3 val'
}
}
我尝试使用以下代码:
Dim json As New JArray()
Dim jsonObj As New JObject( _
New JProperty("external_id", "UNIQUE_ID_222222222"),
New JProperty("firstname", "John"),
New JProperty("lastname", "Smith"))
Dim jsonCustomFields As New JArray
Dim jsonCustomObject As New JObject
jsonCustomFields.Add(jsonCustomObject)
For Each field In CustomFieldList
jsonCustomObject.Add(New JProperty(field.Label, field.Value))
Next
jsonObj.Add(New JProperty("customFields", jsonCustomFields))
json.Add(jsonContrib)
但是,当我这样做时,我得到了一种不被 web 服务接受的不同模式
{[
{
"external_id": "50702",
"firstname": "John",
"lastname": "Smithson",
"customFields": [
{
"custom1":"custom1 val",
"custom2":"custom2 val",
"custom3":"custom3 val"
}
]
}
]}
我认为我应该直接向 JArray 添加属性,但这样做会导致运行时异常。
我已经看到了在反序列化 Dictionary(String, String) 对象时创建的类似模式,但我真的不想将自定义字段添加到字典中然后反序列化它们。必须可以使用上述符号创建它们。