Home > Article > Web Front-end > How to solve the problem of uniapp displaying garbled characters
Uniapp displays garbled characters because the encoding when UniAPP reads the TxT file is inconsistent. The solution: first open the corresponding code file; then change "readastext(file,"utf8");" to "readastext( file,"gbk");" That's it.
The operating environment of this tutorial: windows7 system, uni-app2.5.1 version. This method is suitable for all brands of computers.
Recommended (free): uni-app development tutorial
UniAPP reads the content of the TxT file on the mobile phone, and the result is Chinese garbled characters? How to solve it?
Solution:
Change the "utf-8" in the first red box to "GBK".
The above is the detailed content of How to solve the problem of uniapp displaying garbled characters. For more information, please follow other related articles on the PHP Chinese website!