我参考以下页面添加了响应头: How to add custom header to ASP.NET Core Web API response
我写道:
ObjectResult result = new ObjectResult("aaa");
Request.HttpContext.Response.ContentType = "text/html; charset=shift_jis";
Request.HttpContext.Response.Headers.Add("IPAddress", "10.11.12.13");
Request.HttpContext.Response.Headers.Add("name", "Naoki");
我不仅要更改响应主体的字符集,还要更改响应头。例如,“ Naoki”和“ 10.11.12.13”。因为在响应头中的生产数据中插入了双字节字符。
如何在Response Header中更改字符集? 最好的问候。