我有一个使用 autoform、collection2 和简单模式创建的插入表单。该createdBy
字段使用自动值填充用户 ID。该表单在meteor.allow()
用于插入时有效,但我想用一种方法替换允许,以便我可以对用户角色进行一些验证,即确保用户具有管理员权限。但是现在我收到一个错误,即该createdBy
字段为空。
开发工具中的错误是:
错误:400,原因:“需要创建者”,详细信息:未定义,消息:“需要创建者 [400]”,错误类型:“Meteor.Error”}
Courses = new Mongo.Collection('Courses');
courseSchema = new SimpleSchema({
title: {
type: String,
label: "Course Title"
},
description: {
type: String,
label: "Description"
},
createdAt: {
type: Date,
autoValue: function(){
return new Date();
},
autoform:{
type: 'hidden'
}
},
startDate:{
type: String,
label: "Start Date"
},
sessions: {
type: String,
label: "No. of sessions"
},
duration: {
type: String,
label: "Duration of the course"
},
price: {
type: String,
label: "Course Price"
},
createdBy:{
type: String,
autoValue:function(){
return this.userId;
},
autoform:{
type:'hidden'
}
}
});
Courses.attachSchema(courseSchema);
该方法(在客户端和服务器上可用):
Meteor.methods({
addCourse: function(course){
Courses.insert(course);
}
});
以及生成表单的模板:
<template name="adminIndex">
<h1>Available Courses</h1>
{{> courseList }}
<button type="button" class="btn btn-success btn-block">Create New Course</button>
<h3>Create New Course</h3>
{{>quickForm id="InsertCourseForm" collection="Courses" type="method" meteormethod="addCourse"}}
</template>