Laravel 使 header
Laravel make header
如何将 header 添加到 Laravel 中的响应视图?
我试过这个:
return View::make('rss', $data)->header('Content-Type', "application/rss+xml");
但出现错误。
我添加了这部分->header('Content-Type', "application/rss+xml")
原件是:return View::make('rss', $data);
试试这个:
return Response::view('hello')->header('Content-Type', $type);
或者试试这个:
$contents = View::make('embedded')->with('foo', $foo);
$response = Response::make($contents, $statusCode);
$response->header('Content-Type', 'application/javascript');
return $response;
如何将 header 添加到 Laravel 中的响应视图?
我试过这个:
return View::make('rss', $data)->header('Content-Type', "application/rss+xml");
但出现错误。
我添加了这部分->header('Content-Type', "application/rss+xml")
原件是:return View::make('rss', $data);
试试这个:
return Response::view('hello')->header('Content-Type', $type);
或者试试这个:
$contents = View::make('embedded')->with('foo', $foo);
$response = Response::make($contents, $statusCode);
$response->header('Content-Type', 'application/javascript');
return $response;