gpt4 book ai didi

javascript - 设置 ngModel 默认值 Angular 2

转载 作者:可可西里 更新时间:2023-11-01 02:22:40 25 4
gpt4 key购买 nike

angular 2 中的 ngModel 有问题。有一个任务是从组件类中的数组输出几个输入。发现了一种使 ngModel 从 [name] 属性中获取其值而不包含 [()] 中的 ngModel 的可能性。我想知道是否有办法为这些输入提供默认值。

个人详细信息.component.ts :

import {
Component,
} from '@angular/core';

import { Input }from './Input'

@Component({
selector: 'personal-details',
styleUrls: ['personal-details.component.sass'],
templateUrl: 'personal-details.component.html'
})
export class PersonalDetailsComponent {
title: string;
inputs: Input[] = [
new Input('Name', 'text', 'Name', true, true),
new Input('Surname', 'text', 'Surname', true, true),
new Input('Mobile phone Number', 'text', 'phone', true, true),
new Input('Date of Birth', 'text', 'birthday', false, true),
new Input('Title', 'text', 'title', false, false),
new Input('Title after name', 'text', 'title-after-name', false, false),
new Input('Personal number', 'text', 'personal-number', false, false),
new Input('National ID/Passport number', 'text', 'personal-id', false, true),
];
save = function (form) {
console.log(form);
}
constructor(){
this.title = 'someName';
}
}

这是我的模板:

<h4 class="profile__title">Personal Details</h4>
<form #personalDetails="ngForm" (ngSubmit)="save(personalDetails.value)">
<div layout="row" flex-wrap>
<div class="profile__input-wrapper" *ngFor="let input of inputs" flex="33">
<md-input-container class="profile__input-container">
<input md-input
[placeholder]="input.placeholder"
[type]="input.type"
[name]="input.name"
[disabled]="input.isDisabled"
[required]="input.isRequired"
ngModel>
</md-input-container>
</div>
</div>
<profile-footer ></profile-footer>
</form>

尝试了其他几种使用 ngFor 列出它们的方法,但没有成功。

最佳答案

最直接的方法是使用单向绑定(bind)的 ngModel

<input md-input
[placeholder]="input.placeholder"
[type]="input.type"
[name]="input.name"
[disabled]="input.isDisabled"
[required]="input.isRequired"
[ngModel]="input.value">

它会将初始值传递给输入,而不会对事件使用react并将更改传递回模型。

关于javascript - 设置 ngModel 默认值 Angular 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41858054/

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