json中的数据中文乱码,显示在jsp页面中也是乱码,后台不乱码,在ajax中怎样解决乱码?
展开全部
有A.jsp:
<input type="hidden" name="model" id="model" value="">
.................................
然后使用方法,在模态对话框中打开B.jsp
var str = window.showModalDialog(Url,window,"help:no;status:no;scroll:yes;dialogWidth:750px;dialogHeight:510px;");
if(str!=null && str!=undefined){
alert(str.stateJson); //这是一
$("#model").val(str.stateJson)
}
然后再B.jsp中
使用
var objc = new Object();
objc.stateJson=json; //拼好的JSON
window.returnValue = objc;
window.close();
将拼写好的字符串传送回去
但是当我在将A.jsp中的JSON返回B.jsp时
就发现中文变成乱码了
当在注释一的时候,还是中文。
然后A、B页面的头
都是
<%@ page contentType="text/html; charset=utf-8" language="java" pageEncoding="UTF-8" errorPage="" isELIgnored="false"%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<input type="hidden" name="model" id="model" value="">
.................................
然后使用方法,在模态对话框中打开B.jsp
var str = window.showModalDialog(Url,window,"help:no;status:no;scroll:yes;dialogWidth:750px;dialogHeight:510px;");
if(str!=null && str!=undefined){
alert(str.stateJson); //这是一
$("#model").val(str.stateJson)
}
然后再B.jsp中
使用
var objc = new Object();
objc.stateJson=json; //拼好的JSON
window.returnValue = objc;
window.close();
将拼写好的字符串传送回去
但是当我在将A.jsp中的JSON返回B.jsp时
就发现中文变成乱码了
当在注释一的时候,还是中文。
然后A、B页面的头
都是
<%@ page contentType="text/html; charset=utf-8" language="java" pageEncoding="UTF-8" errorPage="" isELIgnored="false"%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
追问
不行啊,我是从action中把jsonarray传到ajax中乱码下面是我的action代码
JSONArray jsonArray = JSONArray.fromObject(listDto);
System.out.println(jsonArray);
request.setAttribute("data", jsonArray);
return "search_success";
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询