Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 require.js 和 r.js 优化器,我如何将两个模块(例如 Backbone 和 Underscore)组合到一个包/模块中,然后能够加载包并通过调用来获取对依赖项的引用组合的任何一个模块。这可能吗?
例如,假设我已经设法将 Underscore 和 Backbone 放到一个模块中,那么我将能够使用以下代码加载整个包(包括下划线),并且将主干注入到函数中。
define(['backbone'], function(Backbone){ // My code... })