Meteor autoForm提交给GET请求+查询字符串参数

时间:2015-01-30 06:13:07

标签: javascript meteor meteor-autoform

更新:我想通了。我需要添加collection参数而不是schema参数。一旦我补充说一切都很好。

我有一个正确呈现的表单。但是,当我单击提交按钮时,应该通过autoform挂钩启动的代码不会运行(没有打印控制台日志语句),并且我的浏览器是通过GET请求获取到与表单本身相同的URL,但是包含内容添加到查询字符串的表单值。

e.g。 http://localhost:3000/courses/cqfr3FaSaGNjkHRWd/lessons/new?title=My+Title&summary=My+Summary&content=My+Content

为什么表单未正确提交?

我有一个表格基本上与这个表格完全相同。实际上,我复制并粘贴了该表单中的大部分代码来创建此表单。

这是我的架构:



Application.Schemas.Lessons = new SimpleSchema({
  title: {
    type: String,
    label: "Title"
  },
  summary: {
    type: String,
    label: "Summary"
  },
  content: {
    type: String,
    label: "Content"
  },
  courseId: {
    type: Number,
    index: 1
  },
  lastUpdated: {
    type: Date,
    label: "Last Updated",
    autoValue: function () {
      return new Date();
    }
  }
});




在这里,我将架构添加到一组全局架构并将其附加到集合:



Lessons = Application.Collections.Lessons = new Meteor.Collection('lessons');
Lessons.attachSchema(Application.Schemas.Lessons);
Lessons.allow({
  insert: function() {
    return true;
  },
  remove: function() {
    return true;
  }
});




这是我的表格:



<template name="lessonForm">
    {{# autoForm schema=Application.Schemas.Lessons id="lessonForm" type=action doc=lesson}}
      <fieldset>
          {{> afQuickField name="title"}}
          {{> afQuickField name="summary" rows=6}}
          {{> afQuickField name="content" rows=6}}
      </fieldset>
      <button class="btn btn-primary pull-left" type="submit">Submit</button>
    {{/autoForm}}
</template>

<template name="editLesson">
  <h1 class="page-header">Edit Lesson</h1>
    {{> lessonForm action="update" lesson=this}}
  <button class="delete btn btn-danger pull-right">Delete</button>
  <div class="clearfix"></div>
</template>

<template name="newLesson">
  <h1 class="page-header">New Lesson</h1>
    {{> lessonForm action="insert" }}
  <div class="clearfix"></div>
</template>
&#13;
&#13;
&#13;

0 个答案:

没有答案