In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 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 solve the ajax garbled problem. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
After looking for some resources on the Internet, I realized that this is a coding problem. The data sent by my server is GB2312-encoded, while AJAX treats all the received data as UTF-8-encoded.
Many solutions on the Internet are based on PHP, JSP and so on on the server side, so it is relatively simple to change these coding methods. But my server side is written in C CGI program, used in embedded systems, all the output is using printf.
Finally, a header file under linux is found, which implements the conversion of various encodings. The method of use is as follows:
Int Gb2312toUtf8 (char * inbuf,char * outbuf) {# ifdef ISCHANGEiconv_t cd;int inlen,outlen;inlen=strlen (inbuf); / / gets the length of the input string outlen=100;// output string length. Char * * pin=&inbuf;char * * pout=&outbuf;cd=iconv_open ("utf-8", "gb2312"); / / set to GB2312 to UTF-8if (cd==0) return-1 politics memset (outbuf,0,outlen); if (iconv (cd,pin,&inlen,pout,&outlen) = =-1) return-1 iconvystals close (cd); # elseStrcpy (outbuf,inbuf); # endifreturn 0;}
In this way, the content to be output is converted and then output, and there will be no garbled code.
However, the first page output is the same as the later AJAX request output, and the first output appears garbled after the conversion, so I added a macro definition and added # define ISCHANGE 1 when compiling the AJAX output program, so it can be displayed correctly.
Thank you for reading! This is the end of the article on "how to solve the ajax garbled problem". 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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.