suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Was ist der Befehl, um js/css/image-Dateien zu Symfony src/ hinzuzufügen und sie mit dem Web/-Ordner zu synchronisieren?

Fügen Sie die Datei js/css/image zu symfony src/bundle/Resource/public hinzu. Mit welchem ​​Befehl wird sie mit dem Ordner web/ synchronisiert?

Ich bin mit Symfony nicht vertraut. Fügen Sie nun Ressourcendateien im Verzeichnis src/ und im Verzeichnis web/ hinzu

phpcn_u1582phpcn_u15822751 Tage vor496

Antworte allen(2)Ich werde antworten

  • 阿神

    阿神2017-05-16 16:48:04

    $ php app/console assetic:dump

    详细文档见:http://symfony.com/doc/current/cookbo...

    友情建议通读文档之后,再写代码,效率更高:)

    EDIT:

    assetic:dump是Symfony的AsseticBundle(依赖kriswallsmith的Assetic)提供的:https://github.com/symfony/AsseticBun...,功能更丰富一些,比如拼接文件,压缩文件,图像处理。

    assets:install是由Symfony的FrameworkBundle提供的:https://github.com/symfony/symfony/bl...,就是负责把文件拷贝到公共的web目录下(nix下也可以用symlink方式)

    Antwort
    0
  • 高洛峰

    高洛峰2017-05-16 16:48:04

    创建静态资源的快捷方式到 /web 目录下

    app/console assets:install web --symlink

    合并资原文件(prod 模式下)

    app/console assetic:dump --env=prod

    Antwort
    0
  • StornierenAntwort