Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What if JQuery ajaxSubmit submits garbled codes in Chinese?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is to share with you about how to submit Chinese garbled codes by JQuery ajaxSubmit. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Most people use

JQuery (form) .ajaxSubmit ({url: "ajaxsub.aspx?abc=test", type: "post", dataType: "json", success: data})

Analysis: the AJAX submission of JQuery encodes the data to be submitted and uses encodeURIComponent to process the data in js. Therefore, whether it is Firefox or IE, the submitted data is consistent and is UTF-8-encoded data.

Look at Header and find that there are differences in Content-Type in Entity

In Firefox, Content-Type specifies that the character set is utf-8.

However, there is no character set specification in IE.

Obviously, by default, the character encoding submitted asynchronously by AJAX should be consistent with the page itself, that is, the server uses gb2312 to decode the data (but the data has been encoded by UTF-8 before it is submitted) if the charset specified by the server is not found. This is the root cause of garbled code under IE, while under Firefox, the browser adds the display specification of charset when submitting AJAX data. Causes the server to use UTF-8 to decode the data (decode it correctly).

Referring to the description of the AJAX tool function of JQuery, it is found that there is a parameter that specifies content-type in options.

So specify the encoding type at the time of submission

ContentType: "application/x-www-form-urlencoded; charset=utf-8"

That is, as follows

JQuery (form) .ajaxSubmit ({url: "ajaxsub.aspx?abc=test", type: "post", dataType: "json", contentType: "application/x-www-form-urlencoded; charset=utf-8", success: data}); thank you for reading! This is the end of the article on "how to submit Chinese garbled codes by JQuery ajaxSubmit". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report