上传后如何显示消息。我使用laravel 5,并上传 - dropzone.js。 我试着把它链接起来:
return Response::json(array('success' => true), 200);
但它不起作用。
答案 0 :(得分:0)
错误:(引自official FAQ)
如果您的回复的内容类型为
text/plain
,则只需返回文本而无需进一步标记。如果Content-Type是application / json,Dropzone将使用提供的对象的error
属性。例如:{ "error": "File could not be saved." }
所以你要做的就是:
return Response::json(array('error' => 'Whooops something went terribly wrong'), 400);