Angular2-meteor 无法读取 属性 "meteorInstall"

Angular2-meteor cant read property "meteorInstall"

我正在将一个旧的 angular2 项目转换为使用流星作为基于 ionic2-meteor whatsapp 教程的项目的管理面板样式。

所以我在 api 内的客户端文件夹中构建网站。

我很确定我已经为 angular2 客户端找到了正确的东西(基于旧的社交教程)。

虽然我得到这些是错误的。

modules.js:13538 Uncaught SyntaxError: Unexpected token export
es5-shim.js:17 Uncaught TypeError: Cannot read property 'meteorInstall' of undefined
    at es5-shim.js:17
    at es5-shim.js:2789
promise.js:17 Uncaught TypeError: Cannot read property 'meteorInstall' of undefined
    at promise.js:17
    at promise.js:582
ecmascript-runtime.js:17 Uncaught TypeError: Cannot read property 'meteorInstall' of undefined
    at ecmascript-runtime.js:17
    at ecmascript-runtime.js:4630
babel-runtime.js:17 Uncaught TypeError: Cannot read property 'meteorInstall' of undefined
    at babel-runtime.js:17
    at babel-runtime.js:160
random.js:18 Uncaught TypeError: Cannot read property 'meteorInstall' of undefined
    at random.js:18
    at random.js:368

我想我可能错过了某处的进口或其他东西,但不知道在哪里。

任何帮助都会很棒。

这些是我安装的包。

meteor-base@1.0.4            
mobile-experience@1.0.4       
mongo@1.1.15                   
reactive-var@1.0.11            
jquery@1.11.10                 
tracker@1.1.2
standard-minifier-css@1.3.3
standard-minifier-js@1.2.2
es5-shim@4.6.15
ecmascript@0.6.3
shell-server@0.2.2
angular2-compilers
barbatus:typescript
accounts-base@1.2.14
npm-bcrypt@0.9.2
accounts-password@1.3.4
reywood:publish-composite
http@1.2.11
alanning:roles
check@1.2.4
dispatch:mocha-phantomjs
tmeasday:publish-counts
hwillson:stub-collections
practicalmeteor:mocha
xolvio:cleaner

~编辑

///错误来自@angular/http模块,我将尝试将其回滚以查看是否有帮助。

/**
 * \@experimental
 *
 */
export var QueryEncoder = (function () {//<---- this is the line causing the error
    function QueryEncoder() {
    }

    QueryEncoder.prototype.encodeKey = function (k) { return standardEncoding(k); };

    QueryEncoder.prototype.encodeValue = function (v) { return standardEncoding(v); };
    return QueryEncoder;
}());

来回回滚根本没有帮助。

我遇到了同样的问题。对我来说,这是由于最近安装的离子插件。删除该插件后它已开始正常工作。请尝试删除您最近添加的插件。我希望你现在已经尝试过了。