cipchk / nz-schema-form

ng-zorro-antd form generation based on JSON-Schema
MIT License
40 stars 14 forks source link

设置select 的默认值 #35

Open chenmiao0212 opened 6 years ago

CowSmiles commented 6 years ago

使用default关键字:

"type": {
    "type": "string",
    "title": "类型",
    "default": "tom",
    "widget": {
        "id": "select",
        "data": [
            { "value": "jack", "label": "Jack" },
            { "value": "lucy", "label": "Lucy" },
            { "value": "tom", "label": "Tom", "disabled": true }
        ]
    }
}
chenmiao0212 commented 6 years ago

多谢了,我已经弄好了