- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在响应式表单的帮助下从 json 文件生成表单。表单的生成工作正常,但我面临的问题是 - 当我第一次在 mozila 中单击复选框时,它的值变为“打开”。但是当我取消选中它时,什么也没有发生,它的值仍然是“On”,应该是“off or false”。在 chrome 中点击什么都没有发生。
应用程序组件.ts
import { Component } from '@angular/core';
import { QuestionControlService } from './question-control.service';
import GxData from './gx.json';
@Component({
selector: 'app-root',
template: `
<div>
<app-dynamic-form [questions]="questions"></app-dynamic-form>
</div>
`,
providers: []
})
export class AppComponent{
questions: any[];
constructor() {
this.questions = GxData;
}
}
动态表单.components.ts
import { Component, Input, OnInit, SimpleChanges } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { QuestionControlService } from '../question-control.service';
import SbbData from '../sbb.json';
import GxData from '../gx.json';
@Component({
selector: 'app-dynamic-form',
templateUrl: './dynamic-form.component.html',
providers: [QuestionControlService]
})
export class DynamicFormComponent implements OnInit {
@Input() questions: any[] = [];
form: FormGroup;
payLoad = '';
constructor(private qcs: QuestionControlService) { }
ngOnInit() {
this.form = this.qcs.toFormGroup(this.questions);
}
callGx() {
this.questions = GxData;
this.form = this.qcs.toFormGroup(this.questions);
}
callSbb() {
this.questions = SbbData;
this.form = this.qcs.toFormGroup(this.questions);
}
onSubmit() {
this.payLoad = JSON.stringify(this.form.value);
console.log(JSON.parse(this.payLoad));
}
}
动态表单.component.html
<div class="search_box">
<form (ngSubmit)="onSubmit()" [formGroup]="form">
<button type="button" (click)="callSbb()">SBB</button>
<button type="button" (click)="callGx()">GX</button>
<div *ngFor="let question of questions" class="form-row">
<app-question [question]="question" [form]="form"></app-question>
</div>
<div class="form-row">
<button type="submit" [disabled]="!form.valid">Save</button>
</div>
</form>
<div *ngIf="payLoad" class="form-row">
<strong>Saved the following values</strong><br>{{payLoad}}
</div>
</div>
{{form.value |json}}
问题控制.service.ts
import { Injectable } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
@Injectable()
export class QuestionControlService {
constructor() { }
toFormGroup(questions: any[]) {
let group: any = {};
questions.forEach(question => {
group[question.key] = question.required ? new FormControl(question.value || '', Validators.required)
: new FormControl(question.value || '');
});
return new FormGroup(group);
}
}
动态表单问题.component.ts
import { Component, Input } from '@angular/core';
import { FormGroup } from '@angular/forms';
// import { QuestionBase } from '../question-base';
@Component({
selector: 'app-question',
templateUrl: './dynamic-form-question.component.html'
})
export class DynamicFormQuestionComponent {
@Input() question: any;
@Input() form: FormGroup;
get isValid() { return this.form.controls[this.question.key].valid; }
}
动态表单问题.component.html
<div [formGroup]="form">
<div [ngSwitch]="question.controlType" class="checkbox_wrapper">
<input *ngSwitchCase="'textbox'" [formControlName]="question.key" [id]="question.key" [type]="question.type" name="{{question.name}}">
<label [attr.for]="question.key">{{question.label}}</label>
<select [id]="question.key" *ngSwitchCase="'dropdown'" [formControlName]="question.key" name = "{{question.name}}" >
<option *ngFor="let opt of question.options" [attr.value]="opt.key" [selected]="opt.select">{{opt.value}}</option>
</select>
</div>
<div class="errorMessage" *ngIf="!isValid">{{question.label}} is required</div>
</div>
两个 json 文件看起来像
[
{
"key": "Context",
"label": "Context",
"required": false,
"order": 1,
"controlType": "textbox",
"name": "Context",
"type": "checkbox"
},
{
"key": "contextopt",
"label": "",
"required": false,
"order": 2,
"controlType": "dropdown",
"name": "contextopt",
"options": [
{
"key": "All Context",
"value": "All Context",
"select": true
},
{
"key": "aaa",
"value": "aaa"
},
{
"key": "bb",
"value": "bb"
},
{
"key": "Other",
"value": "Other"
}
]
},
{
"key": "Movement",
"label": "Movement",
"required": false,
"order": 3,
"controlType": "textbox",
"name": "Movement",
"type": "checkbox"
}
]
最佳答案
更新 问题出在您编写 [type]="question.type"
和 question.type="checkbox"时。看起来 Angular 不喜欢这个用于复选框,(但喜欢使用电子邮件、数字......)
将 ng*SwitchCase="'textbox'"
替换为
<ng-container *ngSwitchCase="'textbox'">
<input *ngIf="question.type!='checkbox'" [formControlName]="question.key"
[id]="question.key" [type]="question.type">
<input *ngIf="question.type=='checkbox'" [formControlName]="question.key"
[id]="question.key" type="checkbox">
</ng-container>
您可以成为 stackblitz 中的榜样
其他的想法是创建一个新的类型,“checkbox”和一个新的 switchCase 选项新的 CheckBoxQuestion 是文本框的副本
export class CheckBoxQuestion extends QuestionBase<boolean> {
controlType = 'checkbox';
constructor(options: {} = {}) {
super(options);
}
}
和 switchCase 添加
<input *ngSwitchCase="'checkbox'" type="checkbox" [formControlName]="question.key">
,在 stackblitz 中你有两种情况
注意:您正在创建一个大循环
<div [formGroup]="form">
<input formGroupName="question.key">
</div>
<div [formGroup]="form">
<input formGroupName="question.key">
</div>
...
我建议,将您的 dynamic-form-question.component.html 更改为简单地创建
<div>
<input [formControl]="form.get(question.key)" ..>
</div>
是的,将组合 [formGroup]="form"..formControlName=".."更改为 [formControl]="form.get(..")。
关于angular - 复选框值不会以 react 形式改变 Angular ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56792721/
这是一个新手理论问题 - 我刚刚开始使用 Python 并研究 Django 和 orm。问题:如果我开发我的对象并通过额外的开发修改基础对象结构、继承等 - Django 的 ORM 解决方案会自动
我正在使用带有服务器端处理器的 JavaScript 表单,并且我希望能够让表单根据下拉列表转到不同的电子邮件。我已经根据其他表格尽了最大努力,但似乎无法通过电子邮件。我已在电子邮件地址的选项标签下添
一个简单的问题:给定定义,(来自 Haskell SOE) do x — el; el\ ...; en => el »= \x — do e2\ ...; en 和: do let d
我是 Angular 5 的新手。我目前正在研究 Angular Reactive 表单。我有一个下面的 JSON 结构,我需要在从 FORM 获取值后发回 REST API。 JSON 结构: {
我是 Angular 5 的新手。我目前正在研究 Angular Reactive 表单。我有一个下面的 JSON 结构,我需要在从 FORM 获取值后发回 REST API。 JSON 结构: {
我有一个类型(称之为 A),我想创建一个 A -> A、A -> A -> A、A -> A -> A -> ... 等类型的函数的类型类.这不起作用: {-# LANGUAGE FlexibleIn
我正在使用 java 线程同时管理多个 (3) 程序。1 用于 Java swing 表单(绘制 UI 以进行输入),1 用于在系统托盘上设置图标(从 UI 获取输入后立即启动),1 用于处理输入并将
在当前的元素中,我在表单中遇到了一个问题。表单中标签的字体大小可能大于默认值。如果我把它举起来,那么右边的输入必须垂直居中。 我查看了 Bootstrap 和 Foundation,但都没有解决这个问
为了好玩,我使用了一段从 friend 那里得到的代码,并尝试创建一个包含用户名和密码的登录字段,但我很难获得单词旁边的字段。 username 这个词和你输入的框之间有很大的差距。密码也是如此。 这
我的表单中有一个嵌套的控制组,我想访问它们的表单状态值(如原始和有效)以动态显示验证错误。 是这样动态构建的 controlMap['password'] = this.password; contr
发送后我试图重置我的表单,但只有值设置为空。 component.html {{note.value?.length || 0}}/10
我正在尝试自定义 Stripe 结帐表单,但我不知道如何添加输入。我想添加“电话号码”和“姓名”以创建费用和客户。你知道我该怎么做吗? 这是我应该自定义的代码。 最佳答案 您将无法使用
所以我有这个需求,我想以表格的形式提交一个由五个记录组成的表单。这就是它的样子表: 这是对应的代码: Section Q.No Question
我有一个使用 react 形式和输入文本的情况。 我需要: 当用户输入时,根据输入的内容建议一个列表(我使用的是 ngx bootstrap typeahead); 仅当用户失去输入焦点时才验证输入字
我希望重构我的 Angular 项目中的大量组件,以具有强类型的 FormGroups、FormArrays 和 FormControls。 我只是在寻找一种实现强类型 react 形式的好方法。任何
我有事件表格: 'horizontal', 'fieldConfig' => [ 'template' => "{input}\n{hint}\n{error}",
是否有关于如何实现多选和响应式表单的示例? 我正在尝试在 multiselect-dropdown 上设置所选项目(从数据库中检索),它会更新显示的项目( View ),但会引发以下错误: core.
我想在表单中添加按钮以动态添加输入。但是我发现,如果我在表单中添加了一个仅记录到控制台的按钮(并且当我尝试添加输入时),它将记录日志,然后表单中断。我的Electron应用程序的前端窗口崩溃(不退出但
我有一个这样的表格 此表单位于指令内: angular.module('crowdcoreApp').directive('investorForm',function(){
我在 angularjs Controller 中调用的 $mdDialog 中有一个表单,如下所示: actions-controller.js function callForm() {
我是一名优秀的程序员,十分优秀!