编程语言
首页 > 编程语言> > php-如何在Symfony2中使用URL字符串转发请求

php-如何在Symfony2中使用URL字符串转发请求

作者:互联网

我想执行一个子请求,但是没有$this-> forward()期望的格式的路由-我只有URL作为字符串.

// Symfony2 wants...
$this->forward('ProjectCustomerBundle:Customer:view', array('id' => 1234));

// I want... 
$this->forward('customer/view/1234');

当然可以通过url手动构建Route或Request对象来实现这一目标吗?我暗中怀疑我在这里缺少明显的东西…

解决方法:

使用$this-> get(‘router’)-> match(‘customer / view / 1234’),您应该获得一个数组,其中包含_controller值和您需要传递的所有其他路由参数.

标签:symfony,model-view-controller,php,routing
来源: https://codeday.me/bug/20191201/2083488.html