作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
想要发布一组对象,其中对象具有 JsonPatchDocument 作为其中的属性,如下面的代码。但是,这是否受支持或为什么会发生错误?
public class Person
{
public string Name { get; set; }
}
public class DummyClass
{
public int PriKey { get; set; }
public JsonPatchDocument<Person> PersonPatchDocument { get; set; }
}
[HttpPost]
public IActionResult Test(IEnumerable<DummyClass> input)
{
return Ok();
}
{
"errors": {
"[0].PersonPatchDocument": [
"The JSON patch document was malformed and could not be parsed."
]
},
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "8000000d-0007-fd00-b63f-84710c7967bb"
}
[
{
"PriKey": 1,
"PersonPatchDocument": {
"ContractResolver": {
"value": "bob",
"path": "/name",
"op": "replace"
}
}
}
]
[
{
"PriKey": 1,
"PersonPatchDocument": {
"value": "bob",
"path": "/name",
"op": "replace"
}
}
]
最佳答案
JsonPatchDocument
的 JSON 表示是对象的集合,而不是单个对象。在您的情况下,只有一个更改对象,但它仍然必须包装为一个集合。第二个示例最接近所需的内容,我已将其包含在此处进行更改:
[
{
"PriKey": 1,
"PersonPatchDocument": [
{
"value": "bob",
"path": "/name",
"op": "replace"
}
]
}
]
关于c# - 如何在发布对象中将 JsonPatchDocument 作为属性传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59886442/
我是一名优秀的程序员,十分优秀!