2015-08-29 112 views
0

有人可以告诉我如何让Autoform使用此嵌套架构?流星autoform嵌套架构

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

我已经试过

  {{> afQuickField 'date.estimated'}} 

没有快乐。

回答

0

我当时很蠢。

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