return response()->download($resultPath."/".$csvfilename,$csvfilename,$headers)->with("success","success");不工作
如何在laravel中传递返回参数
发布于 2017-05-15 18:01:26
也许你应该能够做return response()->with('success', 'success')->download(...),但我不确定。
如果您确实需要检查成功,请尝试设置一个头或检查HTTP状态码。
https://stackoverflow.com/questions/43974192
复制相似问题