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.
モジュールにエイリアスを追加することは可能ですか?
たとえば、次のようなモジュールを定義します
define('X')
このように要求したいと思います
require(['Y'])
これでうまくいくはずです:
require.config({ baseUrl: 'js/', paths: { jquery: 'lib/jquery-1.8.0.min' } , urlArgs: urlArgs }); require( ["jquery"], function() {});