0

これは理論的な質問です。

ディレクトリ構造(コンポーネント、プラグインなどからのスクリプトを含める機能を含む)を備えたJoomlaのようなシステムでRequireJSをどのように使用するか

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

または、RequireJSはこの種の多層ディレクトリ構造には適していませんか?

4

1 に答える 1

3

パス設定を使用できます。

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

require(['something/a', 'other/b'], function(a, b){
  // ...
});
于 2011-11-05T07:26:48.647 に答える