编辑yml文件没有效果

Editing yml file has no effect

抱歉,如果这个问题听起来很愚蠢,但我对 PHP 的经验不是很丰富,但我必须对基于 Symfony 和 Twig 的 abandoned open source app 的某些部分进行样式设置。

所以我有 template.yml 并且它是这些发票模板所在的唯一位置,我进行了 grep 搜索以确认。文件内容如下所示:

Template:
  Template_1:
    name: Invoice Template
    slug: invoice-template
    models: Invoice
    template:
       ....

它的 HTML 和 CSS 当我编辑时对应用程序没有影响。我尝试在 settings.yml:

中禁用缓存
prod:
  .settings:
    no_script_name:         true
    logging_enabled:        true
    error_reporting:        <?php echo ((E_ALL | E_STRICT) ^ E_NOTICE)."\n" ?>
    web_debug:              true
    cache:                  false

我也做了:

./symfony cache:clear

...但没有运气。我在这里做错了什么?是的,我检查了几次路径,并不是我编辑了错误的文件或本地文件。

您正在查看 fixture 文件。它在安装期间加载,很可能只是作为加载演示数据的可选步骤。它已加载到数据库中,因此您需要查看 table templatetemplate.