我在回复标题中有这个:
.
我的控制器非常简单:
\.
我使用角度来发布。
答案 0 :(得分:7)
Laravel使用响应类提供修改标题信息。
在控制器中尝试这种方式:
$contents = View::make('embedded')->with('foo', $foo);
$response = Response::make($contents, $statusCode);
$response->header('Content-Type', 'text/plain');
return $response;
答案 1 :(得分:0)
如果你没有返回视图,Laravel会默认返回json ...你试过吗
return ['name' => 'Abigail', 'state' => 'CA'];