0
我有一個使用John Papa的HotTowel的SPA項目。無法在HotTowel SPA上加載模塊
我在services
文件夾listservice
模塊和功能是這樣的:
define(['services/logger', 'models/businessobject', 'config'],
function (logger, businessobject, config) {
...
}
另外我有在models
文件夾businessobject
模塊。但是當我在listservice
模塊中運行應用程序時,參數businessobject
的值爲空。
有沒有什麼我想念告訴RequireJS
或Durandal/Amd
businessobject
模塊在那裏?
的businessobject.js
內容是這樣的:
define(['services/logger'],
function(logger) {
var BusinessObject = function() {
var self = this;
self.id = ko.observable();
self.typeId = ko.observable();
self.descriptor = ko.observable();
self.isNullo = false;
return self;
};
return BusinessObject;
}
而且,使用螢火蟲,我已經簽了businessobject
模塊被加載到客戶端。