具有嵌套模式的Meteor autoform

时间:2015-08-29 19:18:01

标签: meteor meteor-autoform

有人可以告诉我如何让Autoform使用这个嵌套模式吗?

date: {
        type: Number,
        max: new Date().getFullYear(),
        optional: true
    },
"date.estimated": {
        type: Boolean
    },

我试过了

            {{> afQuickField 'date.estimated'}}

没有快乐。

1 个答案:

答案 0 :(得分:0)

我当时很蠢。

"date.year": {
        type: Number,
        max: new Date().getFullYear(),
        optional: true
    },
"date.estimated": {
        type: Boolean
    },