gpt4 book ai didi

c# - ASP.NET WebAPI JSON 绑定(bind)区分大小写

转载 作者:IT王子 更新时间:2023-10-29 04:42:27 25 4
gpt4 key购买 nike

从 ASP.NET WebAPI Beta 升级到 RC 带来了一些兴奋和很多挫折。我已经能够解决大部分问题,但现在困扰我的是 JSON 请求数据的大小写敏感性。

用于 JSON 请求的格式化程序(默认情况下是 JSON.NET 格式化程序)似乎区分大小写,而用于 form-urlencoded 数据的格式化程序则不区分大小写。有没有办法配置 JSON 请求以使用不区分大小写的格式化程序?

这是一个简单的例子来说明我在处理 JSON 请求时遇到的问题:

HTML/JavaScript

<button id="tester">Click here!</button>

<script type="text/javascript">
$(function () {
$("#tester").on("click", function() {
$.ajax({
type: "POST",
url: "/Api/Test/Index/" + 168,
data: ko.toJSON({ key: 123, value: "test value" }), // THIS FAILS
// Key: 123, Value: "test value" <- BUT THIS WORKS
contentType: "application/json; charset=utf-8",
statusCode: {
200: function () {
$("body").append("<p>Success</p>");
},
400: function () {
$("body").append("<p>Failure</p>");
}
}
}).always(function () {
$("body").append("<hr />");
});
});
});
</script>

C#

public class TestController : ApiController
{
public HttpResponseMessage Index(int? id, KeyValuePair<int, string> test)
{
if (id != 168 || test.Key != 123 || test.Value != "test value")
return Request.CreateResponse(HttpStatusCode.BadRequest);

return Request.CreateResponse(HttpStatusCode.OK);
}
}

我在提供 JSON 数据的行中提供了注释。我宁愿不通过适当的大小写属性成员来打破我的 JavaScript 对象的惯例,我当然也不想通过小写我的 C# 属性来打破惯例。有什么想法吗?

最佳答案

Json.NET 格式化程序对反序列化不区分大小写 (json -> CLR)。

在序列化时,您可以使用 CamelCasePropertyNamesContractResolver 获取驼峰式大小写。 .

在您的 Global.asax 中:

var json = GlobalConfiguration.Configuration.Formatters.JsonFormatter;
json.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();

关于c# - ASP.NET WebAPI JSON 绑定(bind)区分大小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11263865/

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