meteor路由错误:path没有path:/

我已经更新meteor到meteor1.3.2.4。 并面临这个问题。 我也更新了最新版本的所有软件包。

错误:path没有path:/

我在“ meteor ”和“ meteor运行 – 生产 ”这两个环境中都试过了,同样的错误也会在控制台上显示出来。

我已经安装了下列软件包。

accounts-oauth 1.1.12 Common code for OAuth-based login services accounts-password 1.1.8 Password support for accounts autopublish 1.0.7 (For prototyping only) Publish the entire database to all clients blaze-html-templates 1.0.4 Compile HTML templates into reactive UI with Meteor Blaze cfs:gridfs 0.0.33 GridFS storage adapter for CollectionFS cfs:standard-packages 0.5.9 Filesystem for Meteor, collectionFS ecmascript 0.4.3 Compiler plugin that supports ES2015+ in all .js files email 1.0.12 Send email messages es5-shim 4.5.10 Shims and polyfills to improve ECMAScript 5 support flowkey:bootstrap-tour 1.1.0 A Meteor.js / Blaze integration for bootstrap-tour insecure 1.0.7 (For prototyping only) Allow all database writes from the client jquery 1.11.8 Manipulate the DOM using CSS selectors kadira:blaze-layout 2.3.0 Layout Manager for Blaze (works well with FlowRouter) kadira:flow-router 2.12.1 Carefully Designed Client Side Router for Meteor meteor-base 1.0.4 Packages that every Meteor app needs mobile-experience 1.0.4 Packages for a great mobile user experience mongo 1.1.7 Adaptor for using MongoDB and Minimongo over DDP pauli:accounts-linkedin 1.3.1 Accounts service for LinkedIn accounts service-configuration 1.0.9 Manage the configuration for third-party services session 1.1.5 Session variable standard-minifier-css 1.0.6 Standard css minifier used with Meteor apps by default. standard-minifier-js 1.0.6 Standard javascript minifiers used with Meteor apps by default. themeteorchef:jquery-validation 1.14.0 jQuery Validation by jzaefferer, repackaged for Meteor. tomi:upload-jquery 2.4.0 Client template for uploads using "jquery-file-upload" from blueimp tomi:upload-server 1.3.4 Upload server for Meteor. Allows to save and serve files from arbitrary directory tracker 1.0.13 Dependency tracker to allow reactive callbacks u2622:persistent-session 0.4.4 Persistently store Session data on the client zimme:active-route 2.3.2 Active route helpers 

我的routing.js公开= FlowRouter.group();

 exposed.route('/', { triggersEnter: function () { if (Meteor.loggingIn() && typeof Meteor.userId() !== 'undefined') { FlowRouter.go("/dashboard"); } }, action: function () { BlazeLayout.render("mainTemplate", {content: "homePage"}); } }); exposed.route('/login', { triggersEnter: function () { if (Meteor.userId() !== null) { FlowRouter.go("/dashboard"); } }, action: function (params) { BlazeLayout.render("mainTemplate", {content: "login"}); } });