Laravel 如何知道 Request::wantsJson 是对 JSON 的请求?
问题描述
我注意到 Laravel 有一个简洁的方法 Request::wantsJson
- 我假设当我发出请求,我可以传递信息来请求 JSON 响应,但我该怎么做,Laravel 使用什么标准来检测请求是否请求 JSON?
I noticed that Laravel has a neat method Request::wantsJson
- I assume when I make the request I can pass information to request a JSON response, but how do I do this, and what criteria does Laravel use to detect whether a request asks for JSON ?
推荐答案
它使用客户端发送的 Accept
标头来确定是否需要 JSON 响应.
It uses the Accept
header sent by the client to determine if it wants a JSON response.
让我们看看代码:p>
Let's look at the code :
因此,如果客户端向 application/json
发送具有第一个可接受的内容类型的请求,则该方法将返回 true.
So if the client sends a request with the first acceptable content type to application/json
then the method will return true.
至于如何请求 JSON,您应该相应地设置 Accept
标头,这取决于您使用什么库来查询您的路由,这里有一些我知道的库示例:
As for how to request JSON, you should set the Accept
header accordingly, it depends on what library you use to query your route, here are some examples with libraries I know :
Guzzle (PHP):
cURL (PHP):
请求(Python):
这篇关于Laravel 如何知道 Request::wantsJson 是对 JSON 的请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!