Я не могу заставить приложение работать на Meteor. quickform не связывает мою коллекцию.Meteor quickForm Exception в помощнике шаблона: Ошибка: Рецепты не находятся в области окна
«Исключение в шаблоне хелпер: Ошибка: Рецепты не в окне рамки»
Любой человек может помочь здесь?
Вот мой QuickForm код
<template name="NewRecipe">
\t <div class="new-recipe-container">
\t \t {{> quickForm collection="Recipes" id="insertRecipeForm" type="insert" class="new-recipe-form" }}
\t \t
\t </div>
</template>
и вот моя коллекция схема
Recipes = new Mongo.Collection('recipes');
RecipeSchema = new SimpleSchema({
\t name: {
\t \t type: String,
\t \t label:"Name"
\t },
\t desc: {
\t \t type: String,
\t \t label:"Description"
\t },
\t author: {
\t \t type: String,
\t \t label:"Author",
\t \t autoValue: function() {
\t \t \t return this.userId
\t \t }
\t },
\t createdAt: {
\t \t type: Date,
\t \t label:"Created At",
\t \t autoValue: function() {
\t \t \t return new Date()
\t \t }
\t }
});
Recipes.attachSchema(RecipeSchema);
{{> quickForm collection = Рецепты id = "insertRecipeForm" type = "insert" class = "new-recipe-form"}} имя схемы без коллекции – channasmcs