我有一项服务只是在屏幕上显示/隐藏负载。
我需要使用Fontawsome图标代替离子图标。
我尝试过:
show(message ? : string) : void {
this.isLoading = true;
this.loader = this.loadingController.create({
spinner: null,
message: "<fa-icon icon='spinner' pulse='true' ></fa-icon>",
translucent: true,
showBackdrop: true,
animated: true,
keyboardClose: true
});
this.loader.then((a: any) => {
a.present().then(() => {
if (!this.isLoading) {
a.dismiss().then(() => console.log('aborting...'));
}
});
});
}
我该怎么办?