我遇到aldeed:autoform的问题我无法解决,也不了解原因是什么。 模板:
<template name="home">
{{> quickForm collection="Posts" id="insertPostForm" type="insert"}}
</template>
路线(铁路:路由器):
Router.route('/', {
name: "home",
data: function () {
return {
posts: Posts.find();
};
},
waitOn: function () {
return Meteor.subscribe("allPostHeaders");
}
});
我发布了#34; allPostHeaders&#34; :
Meteor.publish("allPostHeaders", function(){
return Posts.find({}, {
fields: {content: 0}
});
});
所以在Meteor中我安装了iron:router
,aldeed:collection2
和aldeed:autoform
以及install
和npm simpl-schema
。
因此,当我启动我的应用时,会出现以下异常..
模板助手中的异常: quickFormContext @ http://localhost:3000/packages/aldeed_autoform.js
我发现post但我不会忘记我的引言..所以有人可以帮我找到我错过的内容吗?
答案 0 :(得分:0)
我解决了。
问题是由于安装造成的。使用autoform 6+(最新版本的autoform)我们无法安装aldeed:collection2但是aldeed:collection2-core用于单独安装simple-schema。