定义功能模板define
1 | define( 'camnpr' , [ '/js/camnpr/camnpr.min.js' ], function (require, exports, module) { |
2 | return camnpr; |
3 | }) |
实例:以require加载UEditor,配置他们的依赖关系。可以把下边的代码,直接写到require.js
文件里,这个方便管理和加载配置,同时减少一个单独config文件的加载,同时也避免了因为require.js和 config.js加载顺序不同造成的错误。
1 | window.UEDITOR_HOME_URL = "/js/ueditor/" ; |
01 | require.config({ |
02 | paths: { |
03 | 'jquery' : '/js/jquery' , |
04 | 'uploadify' : '/js/uploadify/jquery.uploadify.min' , |
05 | 'editor' : '/js/ueditor/ueditor.all.min' , |
06 | 'editorConfig' : '/js/ueditor/ueditor.config' , |
07 | 'camnpr' : '/js/camnpr/camnpr.min' |
08 | }, |
09 | shim: { |
10 | 'uploadify' : [ 'jquery' ], |
11 | 'camnpr' : [ 'jquery' ], |
12 | 'editor' : [ 'editorConfig' ] |
13 | } |
14 | }); |
以下是官方例子:
01 | requirejs.config({ |
02 | //Remember: only use shim config for non-AMD scripts, |
03 | //scripts that do not already call define(). The shim |
04 | //config will not work correctly if used on AMD scripts, |
05 | //in particular, the exports and init config will not |
06 | //be triggered, and the deps config will be confusing |
07 | //for those cases. |
08 | shim: { |
09 | 'backbone' : { |
10 | //These script dependencies should be loaded before loading |
11 | //backbone.js |
12 | deps: [ 'underscore' , 'jquery' ], |
13 | //Once loaded, use the global 'Backbone' as the |
14 | //module value. |
15 | exports: 'Backbone' |
16 | }, |
17 | 'underscore' : { |
18 | exports: '_' |
19 | }, |
20 | 'foo' : { |
21 | deps: [ 'bar' ], |
22 | exports: 'Foo' , |
23 | init: function (bar) { |
24 | return this .Foo.noConflict(); |
25 | } |
26 | } |
27 | } |
28 | }); |
29 |
30 | //Then, later in a separate file, call it 'MyModel.js', a module is |
31 | //defined, specifying 'backbone' as a dependency. RequireJS will use |
32 | //the shim config to properly load 'backbone' and give a local |
33 | //reference to this module. The global Backbone will still exist on |
34 | //the page too. |
35 | define([ 'backbone' ], function (Backbone) { |
36 | return Backbone.Model.extend({}); |
37 | }); |