我已经使用json_encode
了很长时间,到目前为止我还没有遇到任何问题。现在我正在使用上传脚本,并尝试在文件上传后返回一些 JSON 数据。
我有以下代码:
print_r($result); // <-- This is an associative array
echo json_encode($result); // <-- this returns valid JSON
这给了我以下结果:
// print_r result
Array
(
[logo_url] => http://mysite.com/uploads/gallery/7f/3b/f65ab8165d_logo.jpeg
[img_id] => 54
[feedback] => Array
(
[message] => File uploaded
[success] => 1
)
)
// Echo result
{"logo_url":"http:\/\/mysite.com\/uploads\/gallery\/7f\/3b\/f65ab8165d_logo.jpeg","img_id":"54","feedback":{"message":"File uploaded","success":true}}
谁能告诉我为什么要json_encode
加斜杠?
更新
@Quentin 说 and 之间发生了一些事情json_encode
,.parseJSON
他是对的。
做一个alert(data.toSource());
给我的结果是:
({response:"{\"logo_url\":\"http:\\/\\/storelocator.com\\/wp-content\\/uploads\\/gallery\\/7f\\/3b\\/71b9520cfc91a90afbdbbfc9d2b2239b_logo.jpeg\",\"img_id\":\"62\",\"feedback\":{\"message\":\"File uploaded\",\"success\":true}}", status:200})
这不是有效的 JSON。它还添加了status:200
,我不知道这是从哪里来的。
可能是Plupload bind
对我返回的数据有什么影响吗?
这是我的 js 脚本:
uploader.bind('FileUploaded', function(up, file, data) {
alert(data.toSource());
$('#' + file.id + " b").html("100%");
});