c#中httpstatuscoderesult语法如下:

publicHttpStatusCodeResult(HttpStatusCodestatusCode,stringstatusDescription)

在Action中通过

returnnewHttpStatusCodeResult(HttpStatusCode.BadRequest,"我是中文字符串")

在前端返回的是乱码。


原因:

根据 http 协议,StatusDescription 是写在 http header 中的,默认所有header是用iso-8859-1编码的,但是中文实际是用uft8编码。所以就出现了乱码问题。


解决:

使用转码把UTF8编码转为iso-8859-1编码


附c#转码代码:

///<summary>///转换为ISO_8859_1///</summary>///<paramname="srcText"></param>///<returns></returns>privatestringStringToISO_8859_1(stringsrcText){stringdst="";char[]src=srcText.ToCharArray();for(inti=0;i<src.Length;i++){stringstr=@"&#"+(int)src[i]+";";dst+=str;}returndst;}///<summary>///转换为原始字符串///</summary>///<paramname="srcText"></param>///<returns></returns>privatestringISO_8859_1ToString(stringsrcText){stringdst="";string[]src=srcText.Split(';');for(inti=0;i<src.Length;i++){if(src[i].Length>0){stringstr=((char)int.Parse(src[i].Substring(2))).ToString();dst+=str;}}returndst;}