1、小程序:提交前先编码
encodeURIComponent(data)
2、服务端解码(PHP)
urldecode(data)
3、如果有空格字符串的,保存之前先对空格进行处理,不然空格在页面会变成+号
4、最后在页面进行解码,就能完整显示了
decodeURIComponent(data)
本文共 197 字,大约阅读时间需要 1 分钟。
1、小程序:提交前先编码
encodeURIComponent(data)
2、服务端解码(PHP)
urldecode(data)
3、如果有空格字符串的,保存之前先对空格进行处理,不然空格在页面会变成+号
4、最后在页面进行解码,就能完整显示了
decodeURIComponent(data)
转载于:https://www.cnblogs.com/cqlb/p/9584771.html