开发者

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

Is there possible get request type in controller?开发者_运维技巧 How?


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.


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.


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜