gpt4 book ai didi

Angular2 - 不能动态更改输入类型

转载 作者:行者123 更新时间:2023-12-04 22:18:26 25 4
gpt4 key购买 nike

我想知道是否有人可以帮助解释为什么我无法动态更改表单输入类型?

例如

<user-input type="{{ isActive ? 'password' : 'text' }}"></user-input>

不起作用。

但这有效,

<user-input type="password" *ngIf="isActive"></user-input>
<user-input type="text" *ngIf="!isActive"></user-input>

用户输入.ts

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

@Component({
selector: 'user-input',
templateUrl: './user-input.html'
})
export class UserInput {

@Input()
public isActive: boolean;

constructor() {

}
}

用户输入.html

<input 
type="{{ isActive ? 'password' : 'text' }}"
class="form-control"
[(ngModel)]="value"
/>

user-input-password.ts

import { Directive, HostListener } from '@angular/core';

@Directive({
selector:
'input[type=password][formControlName],input[type=password][formControl],input[type=password][ngModel]'
})
export class PasswordValueAccessor {

public pattern: RegExp;

private regexMap = /^(?=.*[0-9])(?=.*[!@#$%^&*])[a-zA-Z0-9!@#$%^&*]{6,16}$/;

@HostListener('keypress', ['$event'])
public onKeyPress (e: any)
{
this.pattern = this.regexMap;
const inputChar = e.key;

if (this.pattern.test(inputChar)) {
// success
} else {
e.preventDefault();
}
}
}

我遇到的问题是,当我动态设置类型时,不会触发 user-input-password 指令。如果我直接将类型设置为密码,那么它确实会被触发。

还有另一种动态更改输入类型的方法吗?

最佳答案

尝试这个

<user-input [type]="isActive ? 'password' : 'text'"></user-input>

请看看这个

Dynamically generate input field type with angular 2 and set the type of the field

关于Angular2 - 不能动态更改输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49622750/

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