gpt4 book ai didi

c# - 如何在 ASP.NET MVC 上将 Content-Type 设置为 "text/plain"?

转载 作者:行者123 更新时间:2023-12-02 19:49:36 25 4
gpt4 key购买 nike

代码

public class HomeController : Controller
{
public ActionResult Index()
{
return Content("hello", "text/plain");
}
}

正在响应 header

Content-Type: text/plain; charset=utf-8

我的问题是如何从响应 header 内容类型中删除“; charset=utf-8”?

这里How do I remove the charset from Content-Type in a ASP.NET Core MVC response?这是如何在asp.net core上做到这一点。

最佳答案

您可以在Content()之前清除Charset

public ActionResult Index()
{
Response.Charset = "";
return Content("hello", "text/plain");
}

关于c# - 如何在 ASP.NET MVC 上将 Content-Type 设置为 "text/plain"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58503736/

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