如何使用Angular2在离子2中使用SweetAlert



swal( '好工作!', "您单击了按钮!", '成功')

我想使用Angular 2在我的离子应用中使用这种类型的SWAL警报。

有一个甜蜜的警报模块可用于Angular 2

https://github.com/seiyria/ng2-sweetalert2

import { SweetAlertService } from 'ng2-sweetalert2';
@Component({
  providers: [SweetAlertService]
})
export class MyComponent {
  static get parameters() {
    return [[SweetAlertService]];
  }
  constructor(swal) {
    this.swalService = swal;
  }

sweetalert2.min.css加载时,这将起作用。

编辑9月:2017年

这是已弃用截至2017年8月

您应该使用https://github.com/toverux/ngsweetalert2或https://www.npmjs.com/package/package/sweetalert2

相关内容

  • 没有找到相关文章

最新更新