在我的web应用程序中,我使用jQuery $ .getJSON()方法提交一些表单字段。我有一些编码的问题。我的应用程序的字符集是charset = ISO-8859-1,但我认为这些字段提交与UTF-8。
有人知道,我如何能在$ .getJSON调用中设置编码?
我认为如果你想更改编码,你可能需要使用
原文链接:https://www.f2er.com/json/288748.html$.ajax()
,请参阅下面的contentType参数(成功和错误回调假设你有< div id =“success”>< / div> ; div id =“error”>< / div> in the html):
$.ajax({ type: "POST",url: "SomePage.aspx/GetSomeObjects",contentType: "application/json; charset=utf-8",dataType: "json",data: "{id: '" + someId + "'}",success: function(json) { $("#success").html("json.length=" + json.length); itemAddCallback(json); },error: function (xhr,textStatus,errorThrown) { $("#error").html(xhr.responseText); } });
我实际上只是一个小时前做这件事,什么巧合!