Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你有没有尝试过:
utf8_decode()
在服务器端您传递的变量?PHP 可能期待iso-8859-1而不是uft-8。
原来池塘两边都有问题。这个问题所涉及的 PHP 方面的问题是数据正在通过 GET 请求(url 编码)发送到后端。我已将其更改为 POST 请求。
这允许我在发送 POST 请求的标头时指定 UTF-8 字符集。