gpt4 book ai didi

c# - Json 字符串在 web-api 中被转义

转载 作者:可可西里 更新时间:2023-11-01 08:55:41 24 4
gpt4 key购买 nike

我们将 JSON 配置数据存储在数据库中。我需要获取此 JSON 数据并将其按原样通过 asp.net web-api 返回给浏览器:

public class ConfigurationController : ApiController
{
public string Get(string configId)
{
// Get json from database
// when i return the fetched json it get's escaped
}
}

我返回的值被转义了。我如何简单地按原样返回字符串?我真的不想填充一个序列化为 JSON 的对象。

最佳答案

您可以从 ApiController 返回一个 HttpResponseMessage,这样您基本上可以返回一个字符串值。

例如

public HttpResponseMessage Get()
{
return new HttpResponseMessage() {
Content = new StringContent("Hello World", System.Text.Encoding.UTF8, "application/json")
};
}

您要做的只是将 json 字符串作为 StringContent 传递。

关于c# - Json 字符串在 web-api 中被转义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22689328/

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