php – Laravel – 返回json以及http状态代码
作者:互联网
如果我返回一个对象:
return Response::json([
'hello' => $value
]);
状态代码将是200.如何将消息更改为201,并使用json对象将其发送?
我不知道是否有办法在Laravel中设置状态代码.
解决方法:
您可以使用http_response_code()
来设置HTTP响应代码.
If you pass no parameters then http_response_code will get the current status code. If you pass a parameter it will set the response code.
http_response_code(201); // Set response status code to 201
对于Laravel(参考号:https://stackoverflow.com/a/14717895/2025923):
return Response::json([
'hello' => $value
], 201); // Status code here
标签:php,laravel,json,http-status-codes 来源: https://codeday.me/bug/20190930/1834819.html