Symfony2在组件中找不到jquery.js文件

时间:2014-01-11 20:18:42

标签: javascript php jquery symfony

我正在尝试按照本教程在symfony2中安装bootstraps:https://coderwall.com/p/kzyiaw

当我从终端运行此命令时:php app / console assetic:dump --force

我收到此错误:

17:46:25 [file+] /var/www/html/learn-symfony/app/../web/js/06837fc_part_1.js

  [RuntimeException]                                                                                      
  The source file "/var/www/html/learn-symfony/app/Resources/public/js/vendor/jquery.js" does not exist.

在composer.json中,我在组件目录中安装了jquery:

"require": {
    ...............
    "components/jquery": "*"
}

我可以从路由/组件中找到目录和jquery文件,但是composer正在查找错误的文件夹。在config.yml中,我在资产配置下有这个:

 assets:
    jquery_js:
        inputs:
           - '%kernel.root_dir%/Resources/public/js/vendor/jquery.js'

在应用程序下的Resources目录中,唯一存在的文件夹是java和views。

为了让作曲家找到jquery.js文件,我应该改变什么?

1 个答案:

答案 0 :(得分:3)

Composer不需要找到文件,Assetic需要找到它。

我目前使用jquery加载了components / jquery,并且设置资产就像这样..

assetic:
    ... debug, filters, etc ...
    assets:
        jquery: %kernel.root_dir%/../vendor/components/jquery/jquery.min.js
        underscore: %kernel.root_dir%/../vendor/components/underscore/underscore-min.js
        and so on...

这是使用source加载文件作为vendor目录中的components / jquery文件夹。