1

我正在学习流星的绳索,有点迷失在这里。我正在使用 collections2,autoform 来构建我的应用程序。我想将集合与用户 ID 信息一起存储。因此,当我们从服务器检索集合时,我只想显示用户创建的集合,而不是其他所有内容。这是架构。

    ExercisesSchema = new SimpleSchema({
    "name": {
        type: String,
        label: 'Name'
    },
    "workout.$.weight": {
        type: String,
        label: 'Weight'
    },
    "workout.$.reps": {
        type: String,
        label: 'Reps'
    },
    "notes": {
        type: String,
        label: 'Notes',
        optional: true
    }
});

在服务器端,我只想显示用户创建的锻炼

Meteor.publish('exercises', function () {
    return Exercises.find({owner: this.userId});
});

当我将用户 ID 添加到架构中时,它会显示在自动表单中,我不确定如何隐藏它,如果我隐藏它,那么我可以使用自动表单中的钩子来添加值吗?

4

2 回答 2

5

在架构中,您可以将 ownerId 定义为类型:“隐藏”

schema.js

ExercisesSchema = new SimpleSchema({
    "name": {
        type: String,
        label: 'Name'
    },
    "ownerId": {
        type: String,
        autoform: {
            type: "hidden",
        }
    },
    "workout": {
        //not sure if you need this, you didn't have it in your
        type: [Object], 
        defaultValue: [] 
    },
    "workout.$.weight": {
        type: String,
        label: 'Weight'
    },
    "workout.$.reps": {
        type: String,
        label: 'Reps'
    },
    "notes": {
        type: String,
        label: 'Notes',
        optional: true
    }
});

如你所说,用钩子填充它。

autoFormHooks.js

AutoForm.hooks({
  exerciseForm: {
    formToDoc: function(doc) {
      doc.ownerId = Meteor.userId();
      return doc
    },
  }
});

使用钩子的另一种方法是在 autoForm 中为您要在文档中设置的每个字段使用 quickFields,包括 ownerId。使用此解决方案,您可以将valueownerId 设置为currentUser

{{#autoForm collection="Exercises" id="exerciseForm" type="insert"}}
  <fieldset>
    <legend>Add an Exercise</legend>
    {{> afQuickField name='name'}}
    {{> afQuickField name='notes'}}
    {{> afQuickField name='ownerId' value=currentUserId}}
    {{> afQuickField name='workout'}}
  </fieldset>
  <button type="submit" class="btn btn-primary">Insert</button>
{{/autoForm}}

模板.js

Template.formTemplate.helpers({
    currentUserId: function () {
        return Meteor.userId();
    }
});
于 2015-10-28T03:47:44.910 回答
0

您可以尝试before钩子方法:

ExercisesSchema = new SimpleSchema({
...
    "ownerId": {
        type: String,
        autoform: {
            type: "hidden",
        }
    },
...
});

在您的模板中:

{{#autoForm collection="Exercises" id="exerciseForm" type="insert"}}
  <fieldset>
    <legend>Add an Exercise</legend>
    {{> afQuickField name='name'}}
    {{> afQuickField name='notes'}}
    <!-- Notice I've removed the ownerId from here. Will be added before saving to collection -->
    {{> afQuickField name='workout'}}
  </fieldset>
  <button type="submit" class="btn btn-primary">Insert</button>
{{/autoForm}}

然后你的autoform.js

var addUserHook = {
  before: {
    insert: function(doc) {
      if(Meteor.userId()){
        doc.ownerId = Meteor.userId();
      }

      return doc;
    }
  }
}

AutoForm.addHooks('exerciseForm', addUserHook);

以上只是在即将保存到集合时即时添加 ownerId。

正如大气js.com/aldeed/autoform 上的文档中所述:

例如,您可能希望在插入文档之前将当前用户的 ID 添加到文档中。您可以使用“before”、“formToDoc”或“formToModifier”挂钩来执行此操作。

于 2015-12-16T22:20:26.540 回答