这是来自数据库查询的 json 编码字符串:
[{"columns":[{"class":"grid","html":"<p></p><img src="http://localhost/media/image.jpg"><p></p>"}]},{"columns":[{"class":"grid","html":""}]}]
当我在 PHP 中转到 json_decode 时,我得到了 NULL。
$content = json_decode($json_str); = NULL
我以前没有遇到过这个问题。我在通过 ajax 将项目保存到数据库时使用 JSON.stringify,如下所示:
var data = JSON.stringify(html);
出于某种原因,我是否必须开始以不同的方式对待它?