如何将MomentJS值保存到Meteor简单模式自动表单选择列表值中?

时间:2016-03-06 19:05:50

标签: javascript meteor meteor-autoform simple-schema

目前正试图为我的Meteor应用程序制定支付计划。 当用户创建新帖子时,我想在帖子上为到期日期做出选择。

这是我在简单模式中的尝试目前看起来像 -

    expiryDate: {
  type: String,
  allowedValues: ['One Month ($35/month)', 'Two Months ($30/month)', 'Three Months ($25/month)'],
  autoform: {
    options: [
      {label: "One Month ($35/month)", value: moment().add(30, 'days');},
      {label: "Two Months ($30/month)", value: moment().add(60, 'days');},
      {label: "Three Months ($25/month)", value: moment().add(90, 'days');}
    ]
  }
},

这显然不起作用,有没有办法可以正确地做到这一点?

0 个答案:

没有答案