如何让Ladda与angular2应用程序一起工作

时间:2016-07-07 18:44:08

标签: angular spinner

我正在尝试将ladda与我的angular2应用程序集成。我基本上是尝试导入库并使用Ladda变量。 Angular似乎没有发现变量。有什么建议。

3 个答案:

答案 0 :(得分:1)

declare const Ladda: any;
export class someComponent implements AfterViewInit{
   @ViewChild('scbutton') scbutton: ElementRef;
   l:any;
 ngAfterViewInit() {
        this.l = Ladda.create(this.scbutton.nativeElement);
           }
    }

// u can use this.l.start() and this.l.stop() in ur submit logic

答案 1 :(得分:0)

import Ladda from 'ladda';

export class someComponent implements AfterViewInit {
    @ViewChild('yourButton') yourButton: ElementRef;
    l: any;

    ngAfterViewInit() {
        this.l = Ladda.create(this.scbutton.nativeElement);
        this.l.start();
    }
}

答案 2 :(得分:0)

您可以使用实现angular2-ladda的Angular 4+ Ladda模块。

Check out Ladda's demo