2
我目前正在開發一個使用Angular 2材料的WebApp。 問題是,因爲我已經更新了我的包,SnackBar不再工作。角材料2 SnackBar不起作用
這裏是我的代碼:
import { MdSnackBar } from '@angular/material';
export class HomeMembershipComponent implements OnInit {
constructor(public snackBar: MdSnackBar) {
this.snackBar.open('Félicitation votre compte a bien été créé', 'Ok', {
duration: 3000
});
}
}
這裏是我得到的錯誤:
EXCEPTION: Uncaught (in promise): TypeError: this._appRef.attachView is not a function
你有什麼事的任何想法?它在npm更新之前運行良好。
我知道角材料2是一個持續的話題,但沒有提出問題,對他們的Github上
非常感謝!它現在工作:) –