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 に答える