如何使用在 Angular 中隐藏和显示密码值的按钮切换文本

How to toggle the text with a button that hides and shows password value in Angular

我正在使用 Angular 指令来切换显示和隐藏表单中的密码字段。

我已经能够实现切换密码值的总体 objective 但是,我似乎无法切换按钮中呈现的文本以反映输入字段的状态。

如何才能在用户单击按钮显示输入的密码后将按钮的文本切换为隐藏,然后在用户单击按钮隐藏密码后将其切换回显示?

这是代码库:

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

@Directive({
  selector: '[passToggle]'
})
export class ToggleDirective {
  visible: boolean = false;

  constructor(private el: ElementRef, private renderer: Renderer2) { }

  div = this.renderer.createElement('div');
  span = this.renderer.createElement('span');

  ngOnInit() {
    this.buildInputAppend();
  }

  buildInputAppend () {
    this.renderer.addClass(this.div, 'input-group-append');
    this.renderer.addClass(this.span, 'input-group-text');

    const text = this.renderer.createText('Show');

    this.renderer.appendChild(this.span, text);
    this.renderer.appendChild(this.div, this.span);

    this.renderer.appendChild(this.el.nativeElement, this.div);
  }

  @HostListener('click') onClick() {
    this.visible = !this.visible;

    const parent = this.el.nativeElement.parentNode;
    const input = this.el.nativeElement.firstChild;

    if (!this.visible) {
      input.setAttribute('type', 'text');
    } else {
      input.setAttribute('type', 'password');
    }
  }


}

HTML 模板:

<div class="form-group">
  <div class="input-group" passToggle>
    <input class="form-control" type="password"formControlName="password" >
  </div>
</div>

查看结果演示:Password Toggle Demo

在您的 onClick() 方法的末尾添加这段代码

this.span.innerText = this.toggleName('Show', 'Hide');