且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Blueimp jQuery 文件上传插件——“空文件上传"结果 PHP

更新时间:2023-12-04 20:40:04

Since the version 5 of the plugin, the json response has changed: https://github.com/blueimp/jQuery-File-Upload/wiki/JSON-Response

So you just have tweak your upload class with:

$filejson = new stdClass();
$filejson->files[] = $fileArray;
return json_encode($filejson);

And you're done