我正在使用Pieter Soudan在Meteor Meetup Antwerp上展示的结构设计
根据我的模块的功能,我通过使用不同的命名空间名称(UserAuth、AppRoute)取得了成功。但是,我希望拥有一个特定于应用程序的命名空间 UP (UserPortal),并拥有诸如 UP.UserAuth、UP.AppRoutes 之类的命名空间。
我似乎无法在 UP.UserAuth 中调用检查登录的函数。
我的 up-app 包 package.js 看起来像这样
Package.describe({
name: 'up-app',
version: '0.0.1',
summary: 'User Portal Application',
});
var both=['server','client'];
var server ='server';
var client ='client';
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');
api.use('templating',client);
api.use('iron:router@1.0.7',both);
api.use('tracker',both);
api.use('underscore',both);
api.use('blaze',both);
api.use(['up-user-auth'],both);
api.addFiles(['lib/namespace.js','lib/routes.js'],both);
api.addFiles(['views/dashboard.html','views/loading.html'],client);
api.export('UP');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('up-app');
api.addFiles('tests/up-app-tests.js');
});
我打算使用 up-app 在单个包中声明我的所有应用程序依赖项。
我的 up-app/lib/routes.js 文件如下所示:
Router.configure({
layoutTemplate: 'upDashBoard',
loadingTemplate: 'upLoading'
});
Router.onBeforeAction(UP.UserAuth.loginRequired, {
except: ['login','install']
});
Router.route('/', {
name: 'home'
});
我的 up-user-auth 包在它的 package.js 中有这个
Package.describe({
name: 'up-user-auth',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: 'User Authentication and Roles Management',
});
Package.onUse(function(api) {
var both = ['server', 'client'];
var server = 'server';
var client = 'client';
api.versionsFrom('1.0.3.2');
api.use([
'tracker',
'service-configuration',
'accounts-base',
'underscore',
'templating',
'blaze',
'session',
'sha',
]
,client);
api.use([
'tracker',
'service-configuration',
'accounts-password',
'accounts-base',
'underscore',]
,server);
api.use(['iron:router@1.0.1','copleykj:mesosphere'], both);
api.imply(['accounts-base','accounts-password'], both);
api.addFiles(['lib/namespace.js','lib/loginValidation.js','lib/loginMethods.js'],both);
api.export('UP', both);
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('up-user-auth');
api.addFiles('tests/server/up-user-auth-tests.js');
});
我的 up/lib/namespace.js 看起来像这样:
UP={};
UP.UserAuth={
loginRequired: function() {
return console.log("loginControllers");
}
}
如果我删除第二个引用UP={};
然后我得到一个错误说
无法设置未定义的属性'UserAuth'但是当我添加它时我得到的是无法读取未定义的属性'loginRequired'
我究竟做错了什么?