本文共 668 字,大约阅读时间需要 2 分钟。
url传中文,乱码,即便charset为 UTF-8,
$.ajax({
type: "POST", cache: false, url: "/ProductTypeAndCat/AddType?typeName=" + typeName, contentType: "application/x-www-form-urlencoded; charset=UTF-8", datatype: "JSON", });
data传中文,正确。
$.ajax({
type: "POST", cache: false, url: "/ProductTypeAndCat/AddType", data: {typeName:typeName}, contentType: "application/x-www-form-urlencoded; charset=UTF-8", datatype: "JSON", success: function (data) { if (data.F == 0) { alert("添加陈功"); location.href = "/Admin/ProductType"; } else { alert(data.M); } }, error: function (xhr, status, error) { alert(error); } });
本文转自最课程陆敏技博客园博客,原文链接:http://www.cnblogs.com/luminji/p/4685127.html,如需转载请自行联系原作者