gpt4 book ai didi

c# - 如何使用 servicestack 序列化程序将默认内容类型设置为 Json

转载 作者:行者123 更新时间:2023-11-30 23:05:25 26 4
gpt4 key购买 nike

我想如果客户端在调用 web api 时没有提供内容类型,在服务器端将其设置为 application/json,我发现了这个:

SetConfig(new HostConfig {
PreferredContentTypes = new []{ MimeTypes.Json }.ToList(),
});

this关联但是当我编写这段代码时,编译器无法识别 Setconfig。

  • 我将 servicestack 设置为 web api 中的默认序列化程序

编辑:

我关注了this替换 servicestack.text 而不是 web api 的默认序列化程序的说明。我不知道我应该把这个配置放在哪里,因为当我把它放在 ServiceStackTextFormatter 构造函数中时,编译器无法识别 SetConfig。

最佳答案

使用 Config.DefaultContentType 例如:

SetConfig(new HostConfig {
DefaultContentType = MimeTypes.Json
});

关于c# - 如何使用 servicestack 序列化程序将默认内容类型设置为 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48850232/

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