解决方案:
在ajax传递前用若是Array,JSON,等其它对象,可用JSON.stringfy字符串序列化后,赋值给ajax传递,在后台获取后,对于未使用JSON.stringfy序列化的情况下,直接转码:将utf-8转成gbk编码的,再处理。
在后台进行转码。
mb_convert_encoding($brand_name, "GBK", "utf-8");
另一种解决方法
jQuery(form).ajaxSubmit({
url: "ajax.jsp?a=memberlogin",
type: "post",
dataType: "json",
contentType: "application/x-www-form-urlencoded; charset=utf-8",
success: showLoginResponse
});
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!