我有这种奇怪的行为,当我尝试提交表单时,autoform包会抛出404.
我希望我能获得安装说明和基本演示。 我尝试提供所需的文件。对于初学者来说,Schema,Html和JS文件。
架构(imports / api / footballs / footballs.js):
import { Mongo } from 'meteor/mongo';
import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);
export const Footballs = new Mongo.Collection('footballs');
Footballs.attachSchema (new SimpleSchema({
playerone: {
type: String,
label: 'Player One',
max: 255,
},
playertwo: {
type: String,
label: 'Player Two',
max: 255,
},
gamedate: {
type: Date,
label: 'Game Data',
autoValue: function autoValueCreatedAt() {
return new Date();
},
autoform: {
type: 'hidden'
},
},
},
{tracker: Tracker}));
HTML(imports / ui / pages / stadium.html)
<template name="stadium">
<h1>Lets play kicker!</h1>
{{> quickForm collection=footballCollection id="insertFootballsForm" type="insert" class="newFootballForm"}}
</template>
JS(imports / ui / pages / stadium.js)
import {Footballs} from '../../api/footballs/footballs.js';
import { Template } from 'meteor/templating';
import './stadium.html';
Template.stadium.helpers({
footballCollection(){
return Footballs;
},
});
答案 0 :(得分:2)
感谢@MasterAM的耐心,这是解决方案。该集合确实不存在于服务器端,因此必须导入。哪个没发生。
服务器/ main.js
import '../imports/startup/server';
(进口/启动/服务器/ index.js)
import { Footballs } from '../../api/footballs/footballs.js';
答案 1 :(得分:0)
你应该检查你是否正在使用'不安全'模块,
meteor list
如果它不在列表中,您可以
meteor add insecure
或者,在集合定义之后添加它。
Footballs.allow( {
insert() {
/*here goes the logic to determine if someone is allowed*/
return true;
},
update() { return true; },
remove() { return true; }
} )
顺便说一下,如果您直接使用该集合,您可以在模板上使用它而不是编写帮助程序:
{{> quickForm collection="footballs" id="insertFootballsForm" type="insert" class="newFootballForm"}}