最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Managing common javascript dependencies in Symfony 2 - Stack Overflow

programmeradmin0浏览0评论

I would like to know what is the standard best practice for dealing with mon JavaScript (and even CSS) dependencies across several Symfony 2 bundles.

According to the Book on the official Symfony site:

A bundle should not embed third-party libraries written in JavaScript, CSS, or any other language.

This seems to be logical, but there is no remendation on how to actually declare, or require mon asset dependencies such as jQuery, or more importantly, particular plugins for jQuery. I've emphasized particular plugins because just including a well known, almost always used JS framework in the application layout would be "sort of okay", but a plugin is required just in case it's going to be used.

So if I shouldn't put it in the Resources directory of my bundle, then my questions are the following:

  • where to put the third party code
  • how do I reference it
  • how should other bundles reference the very same plugin (preferably the same physical file)
  • how not to require the same assets more than once

Without knowing any methods to solve this problem, I've thought of adding instructions to my bundle's documentation to include the required libs in the layout file, but there have to be cleaner solutions.

Any thoughts on this?

I would like to know what is the standard best practice for dealing with mon JavaScript (and even CSS) dependencies across several Symfony 2 bundles.

According to the Book on the official Symfony site:

A bundle should not embed third-party libraries written in JavaScript, CSS, or any other language.

This seems to be logical, but there is no remendation on how to actually declare, or require mon asset dependencies such as jQuery, or more importantly, particular plugins for jQuery. I've emphasized particular plugins because just including a well known, almost always used JS framework in the application layout would be "sort of okay", but a plugin is required just in case it's going to be used.

So if I shouldn't put it in the Resources directory of my bundle, then my questions are the following:

  • where to put the third party code
  • how do I reference it
  • how should other bundles reference the very same plugin (preferably the same physical file)
  • how not to require the same assets more than once

Without knowing any methods to solve this problem, I've thought of adding instructions to my bundle's documentation to include the required libs in the layout file, but there have to be cleaner solutions.

Any thoughts on this?

Share Improve this question edited Jun 2, 2011 at 23:52 Imi Borbas asked Jun 2, 2011 at 23:33 Imi BorbasImi Borbas 3,7031 gold badge21 silver badges16 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

A third party plugin that uses Assetic and relies on you to install a dependency should do this by requiring you to have an asset named (for instance) "jquery" in your asset manager. It's up to the application developer to provide this asset in config.yml.

Does that make sense?

发布评论

评论列表(0)

  1. 暂无评论