我怎样才能只获得 easyAdmin bundle twigs 的正文内容
How can i only get the body contents of easyAdmin bundle twigs
我想要 EasyAdmin Bundle 的功能,但我只想要 body 标签,因为我有自己的模板,我似乎无法仅提取 body 标签的内容。
我尝试检查代码,但它一直引用其他树枝
我只想要 html 和 css
中 body 块中的内容
{% extends 'baseback.html.twig' %}
{% block body %}
{% endblock %}
这就是我需要的捆绑代码。"
如果您查看 EasyAdmin 源代码:
https://github.com/EasyCorp/EasyAdminBundle/blob/master/src/Resources/views/default/layout.html.twig
您可以看到 body
块包含所有内容,包括菜单和其他内容; content
块是你想要的。
现在在文档中:
您可以在自己的项目中覆盖上述 layout.html.twig
以仅呈现您想要的内容。
我想要 EasyAdmin Bundle 的功能,但我只想要 body 标签,因为我有自己的模板,我似乎无法仅提取 body 标签的内容。
我尝试检查代码,但它一直引用其他树枝 我只想要 html 和 css
中 body 块中的内容{% extends 'baseback.html.twig' %}
{% block body %}
{% endblock %}
这就是我需要的捆绑代码。"
如果您查看 EasyAdmin 源代码:
https://github.com/EasyCorp/EasyAdminBundle/blob/master/src/Resources/views/default/layout.html.twig
您可以看到 body
块包含所有内容,包括菜单和其他内容; content
块是你想要的。
现在在文档中:
您可以在自己的项目中覆盖上述 layout.html.twig
以仅呈现您想要的内容。