浏览代码

测试多个图片下载

liuzejian 1 年之前
父节点
当前提交
f0660ff79d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/Video/Http/Controllers/VideoSeriesWechatCheckController.php

+ 1 - 1
modules/Video/Http/Controllers/VideoSeriesWechatCheckController.php

@@ -107,7 +107,7 @@ class VideoSeriesWechatCheckController extends CatchController
 
     public function test(Request $request) {
         foreach (['1228789.jpg', 'images.png'] as $i) {
-            Response::streamDownload(function () use($i){
+            return Response::streamDownload(function () use($i){
                 echo file_get_contents(app_path($i));
             });
         }