Meteorでアプリを動作させることができません。 quickformが自分のコレクションをリンクしていません。Meteor quickFormテンプレートヘルパーの例外:エラー:レシピがウインドウスコープにありません
「テンプレートヘルパーの例外:エラー:レシピウィンドウの範囲内にない」
誰もがここに助けることができますか?ここで
は私の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