3

好的,所以我有一个控制器,其中包含一个动作和 2 条与之关联的路由:

/**
 * @Route("/index/preview/", name="mybundle.preview_index")
 * @Route("/", name="mybundle.index")
 * @Template
 */
public function indexAction(Request $request)
{
    $preview = ($request->get('_route') === 'mybundle.preview_index');
    $host = $request->getHttpHost(); //domain.com
    if(!$preivew){
        $host = 'domain2.com';
    }
    return array(
        'preivew' => $preview,
        'host' => $host,
        'basePath' => $preview?'mybundle.preview_':'mybundle.',
    );
}

然后我想根据主机在树枝模板内生成一条路线:

{{ path(basePath~'index') }}
//Then somehow pass the host to this so that i get the intended domain

如果我使用预览路线访问这条路线,那么我会得到:

domain.com/index/preview/

但如果我不是,它会给我:

domain2.com/

我试过的

  • 从控制器内设置路由器上下文,但这不会改变树枝中生成的路由
4

1 回答 1

6

我想到了。而不是使用path()我必须url()在路由器的上下文中使用和设置主机:

if(!$preview){
    $context = $this->get('router')->getContext();
    $context->setHost($host);
}

然后树枝:

{{ url(basePath~'index') }}
于 2014-09-05T00:01:44.063 回答