Я пытаюсь добавить тип ввода = "файл" из angular 8 json формы схемы. Мой json:
{
"$schema": "http://json-schema.org/draft-03/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
}
"document": {
"type": "file"
}
},
"required": [
"name",
"document"
]
}
И моя форма в html:
<json-schema-form framework="material-design" [loadExternalAssets]="false" [schema]="jsonFormObject"
(onSubmit)="createUserDocument($event)"></json-schema-form>
Я использую angular 8. Также выберите несколько, и textarea не работает , Пожалуйста помоги. Заранее спасибо