当我以角度形式创建一个带有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
}
}
);
答案 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'
}
}
);