1

我对角度很陌生-请耐心等待:)我想要一个嵌套形式-例如:

name:{
 firstname:"",
 lastname:"",
}

这是我的“正式”功能:

this.getFormFields = function (categories) {
     var meta={
        metadata:{
          title:"hello",
          description:"test123",
        }
     }
     return [{
        key: 'name',
        type: 'input',
        templateOptions: {
          label: gettextCatalog.getString('Name'),
          required: true
        }
      }, 
      {
          key: 'metadata',
          type: 'input',
          model:meta.metadata,
          templateOptions: {
            label: "metadata title",
           }
       },
      {
        key: 'clientId',
        type: 'input',
        templateOptions: {
        required:true,
        label: "clientId"
         }
       },
      }];
    };

那么如何添加嵌套字段呢?

4

1 回答 1

2

你很幸运!这在 angular-formly 的 7.0.0 版本(昨天推出)中变得异常简单。这是一个例子

对于您的具体情况,您可能会执行以下操作:

{
  key: 'name.firstname',
  type: 'input',
  templateOptions:  {
    label: 'First Name'
  }
}
于 2015-09-08T15:15:28.073 回答