我是meteor的新手,并尝试使用Ian Serlin(https://github.com/ianserlin/meteor-balanced-payments)的流星平衡支付套餐。软件包显示已正确安装,但我在客户端和服务器端都遇到问题,只是为了正确加载软件包以开始使用它。如果有人有一个完整的运行示例,我可以使用它。
客户端看起来像是在使用流星均衡支付的session-extras包之后加载了下划线内置包。请注意,Meteor.settings.public.balanced.marketplaceUri
已正确设置为我的测试市场形式为/v1/marketplaces/TEST-########################
的Uri字符串。客户端初始化代码是:
[客户机/ main.js]:
Meteor.startup(function() {
Session.whenTrue("balancedLoaded", function() {
balanced.init(Meteor.settings.public.balanced.marketplaceUri);
});
});
运行时,Chrome javascript控制台中会显示以下错误。 session-extras.js的第一行是"_.extend(Session,{"
,这意味着问题是第一个"_"
下划线使用。有什么建议吗?包不要使依赖项显式化吗?我不知道该怎么做才能纠正。
未捕获的ReferenceError:_未定义session-extras.js:1
未捕获的TypeError:对象[object Object]没有方法'whenTrue'
第二个问题是服务器端未能声称nbalanced不存在。服务器的代码和相应的控制台错误如下。这看起来就像流星均衡支付包文档建议的那样。 nbalanced在智能包中作为Npm依赖项,作为包的一部分构建。有没有为nbalanced
定义原因的任何建议?
[服务器/ bootstrap.js]:
Meteor.startup(function () {
balanced = new nbalanced({
secret: Meteor.settings.balanced.apiSecret,
marketplace_uri: Meteor.settings.balanced.marketplaceUri
});
});
控制台输出:
2042-01:58:33.453(-4)? (STDERR) /Users/foo/test-payments4/.meteor/local/build/programs/server/boot.js:185
W2042-01:58:33.454(-4)? (STDERR) }).run();
W2042-01:58:33.454(-4)? (STDERR) ^
W2042-01:58:33.456(-4)? (STDERR) ReferenceError: nbalanced is not defined
W2042-01:58:33.457(-4)? (STDERR) at app/server/bootstrap.js:12:18
W2042-01:58:33.457(-4)? (STDERR) at /Users/foo/test-payments4/.meteor/local/build/programs/server/boot.js:158:61
W2042-01:58:33.457(-4)? (STDERR) at Array.forEach (native)
W2042-01:58:33.457(-4)? (STDERR) at Function._.each._.forEach (/Users/foo/.meteor/tools/a80b2d5689/lib/node_modules/underscore/underscore.js:79:11)
W2042-01:58:33.458(-4)? (STDERR) at /Users/foo/test-payments4/.meteor/local/build/programs/server/boot.js:158:5
=> Exited with code: 8
其他相关文件......
[smart.json]:
{
"packages": {
"balanced-payments": {},
"session-extras": {},
"sync-methods": {}
}
}
[smart.lock]:
{
"meteor": {},
"dependencies": {
"basePackages": {
"balanced-payments": {},
"session-extras": {},
"sync-methods": {}
},
"packages": {
"balanced-payments": {
"git": "https://github.com/ianserlin/meteor-balanced-payments.git",
"tag": "v0.1.1",
"commit": "6ebc8f9855f35c040b67f0d9bebf16870160c1b2"
},
"session-extras": {
"git": "https://github.com/belisarius222/meteor-session-extras.git",
"tag": "v0.3.0",
"commit": "0c49d41009821e76f46af3ad65d0a1d5bfa8d4eb"
},
"sync-methods": {
"git": "https://github.com/ianserlin/meteor-sync-methods.git",
"tag": "v0.1.1",
"commit": "2a7b094d54f3fb7c9acebbe10b68f9db1e5f156b"
}
}
}
}
相关版本号:
$ uname -a
Darwin mini-en0.home 11.4.2 Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64 x86_64
$ node --version
v0.10.19
$ mrt --version
Meteorite version 0.6.14
问题是这些软件包(平衡支付和会话额外)都没有针对0.6.5命名空间更改进行更新。我对包的本地副本进行了以下更改以使其工作。现在它运行得很干净。
[balanced-payments / package.js]:需要使用api.export()导出nbalanced符号,以便服务器可以使用它...
Package.describe({
summary: 'Balanced Payments (nbalanced packaged for meteor)'
});
Npm.depends({
'nbalanced': 'https://github.com/ianserlin/nbalanced/tarball/05eb18cf3536e22b62f349d0520e5df23740dd5c'
});
Package.on_use(function (api) {
api.use('sync-methods', 'server');
api.add_files('index.js', 'server');
api.add_files('balanced.js', 'client');
api.export('nbalanced', 'server');
});
[session-extras / package.js]:需要通过api.use()导入下划线和会话,以便可以扩展Session ...
Package.describe({
summary: "a few useful helpers for Meteor's Session"
});
Package.on_use(function (api) {
api.use('underscore', 'client');
api.use('session', 'client');
api.add_files([
'session-extras.js'
],'client');
});