角度形式的输入标签没有显示

时间:2015-08-06 09:05:51

标签: angular-formly

我有一个令人沮丧的问题,type设置为input我看不到标签。
如果我使用type作为select,它的工作正常。这是我的代码:

{
            "type": "input",
            "key": "firstName",
            "templateOptions": {
                "type": "text", 
                "placeholder": "jane doe",
                "label": "First name"
            }
        },

没有显示标签,但是这样做:

{
"key": "transportation",
"type": "select",
"templateOptions": {
    "label": "How do you get around in the city",
    "valueProp": "name",
    "options": [
        {
            "name": "Car"
        },
        {
            "name": "Helicopter"
        }                
    ]
}
}

任何帮助都会受到赞赏吗?

0 个答案:

没有答案