Angular2 Typescript确认弹出

时间:2016-11-10 09:18:04

标签: html angular typescript

当我点击删除按钮时,我开始学习angular2 +打字稿并尝试找到类似ng-really-message,ng-really-click(在Angularjs中)的内容。有人能提出我最好的方法吗?并链接到文档。 附:我正在使用asp.net核心,.net核心

1 个答案:

答案 0 :(得分:0)

您可以轻松实现此功能,而无需外部模块/指令:

import { Component } from '@angular/core';
@Component({
  selector: 'app-root',
  template: `
     <a (click)="confirm('Are you ready?', takeaction)">Delete Me</a>
  `
})
export class AppComponent {
   confirm(msg, fn){
     let result = confirm(msg)
     if (result) {
       fn()
     }
   }

   takeaction(){
      console.log('Taking Action!!')
   }
}