角formly。 SetType选项

时间:2016-01-29 10:07:20

标签: javascript html angularjs angular-formly

当我以角度形式创建一个带有setType的新类型时,我如何在模板中显示选项。

我想要一个名为category的类型,在网页上显示标签,那么我如何gwt标签名称?

到目前为止我的代码:

//new type for adding a category label
formlyConfig.setType([
      {
            name:'category',
            template: '<div><center><b>"options.label"</b></center></div>'
      }
]);

Print是我要在页面上显示的变量,formlyField是形式数组。

formlyField.push(
     {
            type: 'category',
            templateOptions: {
                label: print
            }

     }
);

1 个答案:

答案 0 :(得分:1)

试试这个:

//new type for adding a category label
formlyConfig.setType([
      {
            name:'category',
            template: '<div><center><b>{{options.label}}</b></center></div>'
      }
]);

和您的字段

formlyField.push(
     {
            type: 'category',
            templateOptions: {
                label: 'print'
            }

     }
);