这个Laravel 5响应有什么问题?

时间:2015-04-14 22:30:52

标签: php laravel-5

我需要返回自定义标题,但它不适用于我。

例如

$content = view('my.view')

return (new Response($content, 304))->header('Content-Type', 'text/plain');

return response($content, 304)->header('Content-Type', 'text/plain');

甚至如此

new \Symfony\Component\HttpFoundation\Response($content,304,['Content-Type'=>'text/plain']);`

我只想要使用自定义标题的渲染视图,但在浏览器中我得到响应代码200和内容类型text/html

0 个答案:

没有答案