如何编写指令来比较Ionic 2中的两个密码

时间:2017-12-12 15:29:03

标签: ionic-framework directive

如何编写指令来比较Ionic 2中的密码。 我编写了一个自定义指令语法,它获取当前文本字段值,但是我需要获取要比较的其他文本字段值,这是通过指令无法实现的

*this is my custom directive
@Directive({
  selector: '[compare-password]', // Attribute selector
  host: {
        '(input)': 'ionChangesss($event)'
    }
})
export class ComparePasswordDirective {
  private elRef : ElementRef;
  constructor(public el: ElementRef, renderer: Renderer) {
    this.elRef = el;

    }
     ionChangesss(eve) {
    }

0 个答案:

没有答案