snackbar css 显示不正确
snackbar css is displayed incorrectly
当我通过 http 调用遇到错误时,我正在尝试显示小吃店 =>
constructor(
private actions$: Actions,
private getuserService: UserService,
private snackBar: MatSnackBar
) { }
@Effect()
getUser$ = this.actions$.pipe(
ofType<featureActions.getUser>(featureActions.ActionTypes.getUser),
switchMap(() =>
this.getuserService.getUser().pipe(
map(user => new featureActions.getUserSuccess(user)),
catchError((error: HttpErrorResponse) => {
this.snackBar.open("error message", 'OK', {duration: 2000});
return of(new featureActions.GetUserFailed(error))
}),
),
),
);
我已经在我的 AppModule 中导入了所有 materials 模块,包括 MatSnackBarModule。
但是,当我显示它时,div在页面的左上角是这样的
没有错误,我也没有在任何地方覆盖任何 material css。我不太明白我的错误。此外,当我检查时,所有 css 类 等都已应用。
当我通过 http 调用遇到错误时,我正在尝试显示小吃店 =>
constructor(
private actions$: Actions,
private getuserService: UserService,
private snackBar: MatSnackBar
) { }
@Effect()
getUser$ = this.actions$.pipe(
ofType<featureActions.getUser>(featureActions.ActionTypes.getUser),
switchMap(() =>
this.getuserService.getUser().pipe(
map(user => new featureActions.getUserSuccess(user)),
catchError((error: HttpErrorResponse) => {
this.snackBar.open("error message", 'OK', {duration: 2000});
return of(new featureActions.GetUserFailed(error))
}),
),
),
);
我已经在我的 AppModule 中导入了所有 materials 模块,包括 MatSnackBarModule。
但是,当我显示它时,div在页面的左上角是这样的
没有错误,我也没有在任何地方覆盖任何 material css。我不太明白我的错误。此外,当我检查时,所有 css 类 等都已应用。