RequireJS 如何与 Joomla 这样的系统一起使用?

发布于 2024-12-13 21:04:29 字数 215 浏览 1 评论 0原文

这是一个理论问题。

RequireJS 如何与像 Joomla 这样具有目录结构的系统一起使用(包括包含来自组件、插件等的脚本的能力)

/components/com_something/script/a.js
/components/com_other/script/b.js

或者 RequireJS 不适合这种多层目录结构?

This is a theoretical question.

How would RequireJS be used with a system like Joomla with the directory structure (including ability to include scripts from components, plugins, etc)

/components/com_something/script/a.js
/components/com_other/script/b.js

Or isn't RequireJS suitable for this kind of multi-tiered directory structure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹沉浮 2024-12-20 21:04:29

您可以使用路径配置:

require.config({
  baseUrl: '/components'
  paths: {
    something: 'com_something/script',
    other: 'com_other/script'
  }
});

require(['something/a', 'other/b'], function(a, b){
  // ...
});

You can use paths config:

require.config({
  baseUrl: '/components'
  paths: {
    something: 'com_something/script',
    other: 'com_other/script'
  }
});

require(['something/a', 'other/b'], function(a, b){
  // ...
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文