0

在 routing.yml 我可以重新获取其他路由配置:

AcmeTestBundle:
resource: "@AcmeTestBundle/Resources/config/routing.xml"
prefix:   /

相同的配置在 XML 中的外观如何?

我试过:

<route id="AcmeTestBundle">
    <default key="_ressource">AcmeTestBundle/Resources/config/routing.xml</default>
</route>

但这不起作用...

4

1 回答 1

1

看看官方手册

http://symfony.com/doc/current/book/routing.html#include-external-routing-resources

在那里您可以单击名为“XML”的选项卡

<!-- app/config/routing.xml -->
<?xml version="1.0" encoding="UTF-8" ?>

<routes xmlns="http://symfony.com/schema/routing"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">

    <import resource="@AcmeHelloBundle/Resources/config/routing.xml" />
</routes>
于 2012-04-05T09:18:44.773 回答