jquery.ashx 파일 post 중국어 난 장 판 문제 해결 방법
$(document).ready(function (){
$("#btnSend").click(function(){
$.ajax({
type: "POST",
url: "PrecisionAHandle.ashx",
contentType:"application/x-www-form-urlencoded; charset=UTF-8",
data: { "StudentId": $("#LblStudentId").attr("innerText"),"StudentName": $("#LblStudentName").attr("innerText"),"StudentAge": $("#txtStudentAge").attr("value")},
success: function(html){
$("#TabContainer").html(html);
}
});
});
});
중 StudentName 은 중국어 4.ashx 파일 에서 인 자 를 받 는 쓰기 string strStudentName=context.Request.Params["StudentName"];메모:contentType 이 없 으 면:"application/x-www-form-urlencoded;charset=UTF-8"이면 context.Request.Params["Student Name"]은 난호 입 니 다..ashx 에서 context.Request.contentEncoding 을 추적 한 결과 jquery 가 post 한 데 이 터 는 gb 2312 인 코딩 을 사용 한 것 을 알 수 있 습 니 다.context.Request 는 데 이 터 를 받 을 때 기본적으로 utf-8 로 디 코딩 을 할 수 있 습 니 다.그러나 jquery 는 Post 데 이 터 를 사용 할 때 utf-8 을 사용 하지 않 아서.ashx 의 context.Request.Params["StudentName"]가 난 장 판 으로 표 시 됩 니 다.느낌 이 이상 한 현상:현상 1:contentType 를 추가 하지 않 습 니 다."application/x-ww-form-urlencoded;charset=UTF-8"의 경우.ashx 파일 에서 아래 문 구 를 사용 하면 문자열 을 정확하게 표시 할 수 있 습 니 다.
StreamReader steamRd = new StreamReader(HttpContext.Current.Request.InputStream);
string strPostData = steamRd .ReadToEnd();
strPostData =HttpUtility.UrlDecode(strPostData, Encoding.GetEncoding("utf-8"));
현상 2:웹 config 의 관련 설정 을이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Java】요청을 던져 화면을 표시②(GET/POST)(골) html 양식에 POST된 값(성명)을 포함하여 화면에 표시 입력 양식 작성 hello.html POST처의 placeholder에는 model.addAttribute GET/POST는 동일한 엔드 포인트 (...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.