这是一个理论问题。
如何将RequireJS与Joomla等系统一起使用,具有目录结构(包括从组件,插件等包含脚本的能力)
/components/com_something/script/a.js
/components/com_other/script/b.js
或者不是RequireJS适合这种多层目录结构吗?
答案 0 :(得分:3)
您可以使用路径配置:
require.config({
baseUrl: '/components'
paths: {
something: 'com_something/script',
other: 'com_other/script'
}
});
require(['something/a', 'other/b'], function(a, b){
// ...
});