我对 Angular Schema 表单完全陌生,并试图用它创建一些表单以显示在我的 html 页面上。我想知道如何以及在哪里放置form content
和在此页面schema content
中定义。我将这些代码行放在什么类型的文件中,如何调用要在我的 html 页面中显示的表单?
形式
[
"name",
"email",
{
"key": "comment",
"type": "textarea",
"placeholder": "Make a comment"
},
{
"type": "submit",
"style": "btn-info",
"title": "OK"
}
]
架构
{
"type": "object",
"title": "Comment",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"email": {
"title": "Email",
"type": "string",
"pattern": "^\\S+@\\S+$",
"description": "Email will be used for evil."
},
"comment": {
"title": "Comment",
"type": "string",
"maxLength": 20,
"validationMessage": "Don't be greedy!"
}
},
"required": [
"name",
"email",
"comment"
]
}
非常感谢您提供一些详细的初学者级别支持指南在这方面的帮助。