gpt4 book ai didi

symfony - 如何在 Symfony2 中停止 Assets 监视?

转载 作者:行者123 更新时间:2023-12-04 02:43:28 24 4
gpt4 key购买 nike

我关注了the Symfony2 guide在开发模式下自动转储 Assets 文件:

  • 我在我的开发配置文件中将 use_controller 参数更改为 false
  • 然后我开始了 --watch 程序。

    $ php app/console assetic:dump --watch

我怎样才能停止观看?

最佳答案

仅在其自身运行时查找文件更改的命令。然后你停止命令 - 不再自动重新生成 Assets 。

在 linux 上它是典型的 ctrl+c 或 ctrl+x

附言来自 DumpCommand 的一些代码

while (true) {
try {
foreach ($this->am->getNames() as $name) {
if ($this->checkAsset($name, $previously)) {
$this->dumpAsset($name, $output);
}
}

// reset the asset manager
$prop->setValue($this->am, array());
$this->am->load();

file_put_contents($cache, serialize($previously));
$error = '';
} catch (\Exception $e) {
if ($error != $msg = $e->getMessage()) {
$output->writeln('<error>[error]</error> '.$msg);
$error = $msg;
}
}
sleep($input->getOption('period'));
}

关于symfony - 如何在 Symfony2 中停止 Assets 监视?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19378583/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com