Sending Chinese via AJAX may cause garbled characters

Source: Internet
Author: User


When using POST:
// If the transfer parameter is directly assigned, garbled characters are generated!
Http_request.open ("POST", url, true );
Http_request.setRequestHeader ('content-type', 'application/x-www-form-urlencoded; charset = gb2312 ');
Http_request.send ("action =" + strName + "& val =" + val); // If the val value is Chinese, garbled characters are generated.
// The solution is simple: Use the escape (string) function in javascript
Http_request.open ("POST", url, true );
Http_request.setRequestHeader ('content-type', 'application/x-www-form-urlencoded; charset = gb2312 ');
Http_request.send ("action =" + strName + "& val =" + escape (val); // if the value of val is Chinese, no garbled characters are generated.
 
When using GET:
1. Add content = "text/html; charset = gb2312" to the html Tag meta to confirm the encoding during browser resolution.
2. Confirm the encoding method at the server level
JSP: response. setHeader ("Charset", "GB2312 ");
 
Author: ERDP Technical Architecture"

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.