您如何正确使用Require.js
来加载返回具有需要依赖项的构造函数的模块?
我的问题似乎是范围问题,我已经看到返回的构造函数中可用的一些模块,如“durandal/app”,我看不出它们的范围与我定义的模块有何不同。
这个例子是从 Durandal 创建一个模块文档修改的
define([**someothermodule**, "durandal/app"], function(**someothermodule**, app){
var backend = function(username, password){
this.username = username;
this.password = password;
someothermodule.whatever(); <--someothermodule is not defined
app.whatever(); <-- this is in scope
};
backend.prototype.getCustomers = function(){
//do some ajax and return a promise
};
return backend;
});
定义([后端],函数(后端){
return {
customers:ko.observableArray([]),
activate:function(){
var that = this;
var service = new backend('username', 'password');
return service.getCustomers().then(function(results){
that.customers(results);
});
}
};
});
其他模块:
define([], function(){
var whatever = function(){
alert("whatever");
};
return {
whatever: whatever
};
});