如何在laravel 5中的dropzone.js上显示消息

时间:2015-03-27 21:30:20

标签: json laravel

上传后如何显示消息。我使用laravel 5,并上传 - dropzone.js。 我试着把它链接起来:

return Response::json(array('success' => true), 200);

但它不起作用。

1 个答案:

答案 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);