我正在尝试在我的meteor包中安装这个cordova软件包:
https://github.com/j3k0/cordova-plugin-purchase
所以我从CLI运行此命令
meteor add cordova:cc.fovea.cordova.purchase @ https://github.com/j3k0/cordova-plugin-purchase.git#79449b8c20c137cfe2fc785d250aa4b92c1c425e
安装有效,但每次我尝试从代码中引用此包时,我都会得到一个未捕获的ReferenceError:未定义存储
以下是我正在使用的代码:
[客户端代码]
Meteor.startup(function () {
store.register({
id: "10stars",
alias: "10 Stars",
type: store.CONSUMABLE
});
});
我是否正确运行安装,或者我错过了一步?