1

2 つの twig ファイルsrc/MyVendor/MyBundle/Resources/views/MyApp/layout.html.twigsrc/MyVendor/MyBundle/Resources/views/MyApp/myView.html.twig があります。

src/MyVendor/MyBundle/Resources/views/MyApp/myView.html.twigの内容

{% extends "layout.html.twig" %}
{% block content %}
   view content is here.
{% endblock %}

しかし、私はエラーが発生しています

Unable to find template "layout.html.twig" in
"MyVendorMyBundle:MyApp:myView.html.twig"
4

1 に答える 1

7

次のようにする必要があります。

{% extends "MyVendorMyBundle:MyApp:layout.html.twig" %}

詳細については、ドキュメントを参照してください。

于 2012-10-31T09:11:59.910 に答える