gpt4 book ai didi

AngularJS 动态表单,如何将模式组件放置在 html 中的所需位置

转载 作者:行者123 更新时间:2023-12-02 01:36:48 24 4
gpt4 key购买 nike

我使用 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 种方法可以到达这里。

  1. 正如人们在上面提到的,一种方法是制作自定义模板(或我们所说的装饰器)。

  2. 第二个是使用实验性功能 manual field insertion. (可以很好地工作)

  3. 第三种方法有点复杂,但操作起来很快。即运行多个具有相同模式和模型但拆分表单定义的 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com