提示错误:
ERRORError: "Uncaught (in promise): TypeError: ToastService._toastCompFactory is null
解决方法:
在constructor中初始化。
constructor(private _toast:ToastService) {}
然后就可以正常使用 ToastService.success等函数。
原因:
ToastService 看起来是静态变量,但只在本对象内有效,因此需要初始化。
参考:
下文提供了不少ionic4 + ng-zorro-mobile 的细节方法:ng-zorro-mobile,踩坑记