Ext ajax传参中文乱码 网上找了很多方法都没能解决,最终按下面这种方式解决了(只有火狐下才会)
Ext.Ajax.request({
url: doURL,
method: 'post',
params:{
opinionEncode: encodeURI(opinion)
},
success: function(o){Ext.Msg.alert("提示信息", "操作成功!");},
failure: function(o){Ext.Msg.alert("提示信息", "操作出错!");},
scope:this
});
将请求参数放到params中并通过encodeURI(opinion)编码
后台进行解码 opinion= URLDecoder.decode(request.getParameter("complaintContentEncode"), "UTF-8");
能正常取到值,不乱码
url: doURL,
method: 'post',
params:{
opinionEncode: encodeURI(opinion)
},
success: function(o){Ext.Msg.alert("提示信息", "操作成功!");},
failure: function(o){Ext.Msg.alert("提示信息", "操作出错!");},
scope:this
});
将请求参数放到params中并通过encodeURI(opinion)编码
后台进行解码 opinion= URLDecoder.decode(request.getParameter("complaintContentEncode"), "UTF-8");
能正常取到值,不乱码