如何在 OpenRasta 中设置 Content-Type 标头字符集

发布于 2024-10-17 19:12:45 字数 369 浏览 4 评论 0原文

当我通过 JsonDataContractCodec 以 JSON 形式返回对象时,OpenRasta 将 Content-Type 标头设置为

应用程序/json

但忽略内容类型的字符集部分。

当我使用 Chrome 时,它​​会发送带有以下标头的 GET 请求:

接受字符集:windows-1251,utf-8;q=0.7,*;q=0.3

和我所有的 utf-8 编码的 json 对象都出错了。

我尝试覆盖 OperationResult 但没有成功。 OpenRasta 用编解码器的标头覆盖我的标头。

When I return my object as JSON via JsonDataContractCodec OpenRasta sets Content-Type header to

application/json

but ignores charset part of content type.

When I use Chrome it sends GET request with folowing header:

Accept-Charset:windows-1251,utf-8;q=0.7,*;q=0.3

and all my utf-8 encoded json objects goes wrong.

I tried to override OperationResult with no luck. OpenRasta overwrites my header with codec's one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城旧梦 2024-10-24 19:12:45

刚刚找到了一种方法 - 继承 JsonCoder 并应用 MediaTypeAttribute:

[MediaType("application/json; charset=utf8")]
public class JsonWithEncoding:JsonDataContractCodec
{

}

并注册处理程序:

ResourceSpace.Has
  .ResourcesOfType<IEnumerable<ProfileResource>>()
  .AtUri("/profiles")
  .HandledBy<ProfileHandler>()
  .TranscodedBy<JsonWithEncoding>();

但这种方法非常静态:(

Just found a way - inherit from JsonCoder and apply the MediaTypeAttribute:

[MediaType("application/json; charset=utf8")]
public class JsonWithEncoding:JsonDataContractCodec
{

}

And register handler with:

ResourceSpace.Has
  .ResourcesOfType<IEnumerable<ProfileResource>>()
  .AtUri("/profiles")
  .HandledBy<ProfileHandler>()
  .TranscodedBy<JsonWithEncoding>();

But this way is very static:(

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文