11 2019 档案
摘要:1、Unable to preventDefault inside passive event listener due to target being treated as passive. 解决:在所在的页面添加样式如下。 * { touch-action: none; }
阅读全文
摘要:经常我们会使用 JSON.stringify() 保存某些数据,然后需要在php中读取,但在PHP接到这个参数的数据时,使用json_decode()却无法解析。所以问题就是,为什么json_decode()解析JSON.stringify为什么为NULL。解决方法:当你使用 JSON string
阅读全文