How to get request type (master/sub) in Symfony2 c

2020-07-03 04:57发布

Is there possible get request type in controller? How?

标签: symfony
3条回答
狗以群分
2楼-- · 2020-07-03 05:43

To detect if the request is a master or not requires the use of the RequestStack, which should be injected into your controller. The request stack has 3 useful methods

getCurrentRequest();
getMasterRequest();
getParentRequest();

The getParentRequest() will always return null if the current request is the master.

查看更多
对你真心纯属浪费
3楼-- · 2020-07-03 05:50

Easy, just call the getMethod() method on your Request object:

$method = $this->get('request')->getMethod();

This will return the HTTP method of the current request, e.g. GET, POST, PUT or DELETE.

查看更多
姐就是有狂的资本
4楼-- · 2020-07-03 05:58

I was looking for this myself, and it seems it is just passed around, so there doesn't seem to be one single place that knows what it is.

My thought for solving this would be to create a simple kernel.request listener that just adds an attribute to the request. Rough (un-tested) code below:

public function onKernelRequest(GetResponseEvent $event)
{
    $event->getRequest()->attributes->set('_request_type', $event->getRequestType());
}

Then in the controller you should be able to do:

$requestType = $this->getRequest()->attributes->get('_request_type');

Again this is untested. You would need to write out the full listener class and add it to the services config file, but other than that I think this will work.

查看更多
登录 后发表回答