作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Angular 模式形式创建了以下模式。但我希望名字进入 div1,年龄进入 div2。请帮助我了解如何执行此操作。
$scope.schema = {
type: "object",
properties: {
"name": {
"type": "string",
"title": "Name",
"required": true
},
"age": {
"type": "number",
"title": "Age"
}
}
};
$scope.form = [
"*",
{
type: "submit",
title: "Save"
}
];
<div id="div1"></div>
<div id="div2"></div>
最佳答案
我是 ASF 项目的成员之一。有 3 种方法可以到达这里。
正如人们在上面提到的,一种方法是制作自定义模板(或我们所说的装饰器)。
第二个是使用实验性功能 manual field insertion. (可以很好地工作)
第三种方法有点复杂,但操作起来很快。即运行多个具有相同模式和模型但拆分表单定义的 ASF 实例。
JS(简体):
$scope.schema = {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"required": true
},
"age": {
"type": "number",
"title": "Age"
}
}
};
$scope.formOne = [
"name"
];
$scope.formTwo = [
"age"
];
$scope.model = {};
html 应该是这样的:
<div id="div1">
<form sf-schema="schema" sf-form="formOne" sf-model="model"></form>
</div>
<div id="div2">
<form sf-schema="schema" sf-form="formTwo" sf-model="model"></form>
</div>
关于AngularJS 动态表单,如何将模式组件放置在 html 中的所需位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30747938/
我是一名优秀的程序员,十分优秀!