web-dev-qa-db-ja.com

キャッシュを自動的にクリアする

テーマ:基本8.x-1.x-dev

twigファイルに変更を加えた後、テーマデータをクリアしようとしています。rebuildThemeDataがここにあることがわかります: https://goo.gl/EA2YL4

現在、これを.themeファイルに入れています。

\Drupal::service('theme_handler')->rebuildThemeData();

\Drupal::service('theme.registry')->reset();

誰かがこの種の実装を完了して例のために働いていますか? https://www.drupal.org/node/2608470

2
arkjoseph

開発中に構成できるsites/default構成ファイルには、D8に付属するいくつかのデフォルトがあります。

アプリケーション部分:

Open development.services.yml in the sites folder 
and add the following block (to disable twig cache)
        parameters:
          twig.config:
            debug : true
            auto_reload: true
            cache: false

これに関する詳細情報があります Drupal.orgノード

4
alex laughnan