添加 aldeed:autoform 会导致 Meteor 1.4.4.2 出错

Adding aldeed:autoform causes error in Meteor 1.4.4.2

我使用以下命令创建了一个新应用;

meteor create --full test

link 应用程序工作正常。但是后来,我在项目中添加了 aldeed:autoform 并重新 运行 meteor.

浏览器控制台显示错误

Error : There is no route for the path: /

整个UI都是空白。

注意: 当我删除包时,应用程序工作正常。

AutoForm 6.0 需要将您的应用切换为使用来自 'NPM' 和 aldeed:collection2-core 包的 SimpleSchema 包。

我遇到了和你一样的问题,所以当我 运行 命令 npm install simpl-schema 时,控制台中的错误消失了。

Note: The aldeed:autoform was also looking for mongo-object which is present in simpl-schema from NPM. For better understanding, follow the below image attached.

希望这对您有所帮助。