ssm框架中.serialize()传递中文乱码问题
Posted 希境流年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssm框架中.serialize()传递中文乱码问题相关的知识,希望对你有一定的参考价值。
解决方案,添加
var params = jQuery("#carApply form").serialize(); params = decodeURIComponent(params, true);
例如js
$("#car_btn").click(function() { var params = jQuery("#carApply form").serialize(); params = decodeURIComponent(params, true); //alert(params); $.ajax({ url : "${APP_PATH}/car", type : "POST", data : params, success : function(result) { alert(result.msg); //关闭模态框 $("#carApply").modal(‘hide‘); }, error : function() { alert("失败!"); } }); });
以上是关于ssm框架中.serialize()传递中文乱码问题的主要内容,如果未能解决你的问题,请参考以下文章
解决SSM框架中,存储到mysql数据库中乱码问题的究极方案