3

我正在使用 Angular JS 1.4.1 和 Angular Toastr 1.7.0。

我的应用程序中的大多数烤面包机都是默认的右上角,并且工作正常。

但是,我想用 the 调用 ONE,但positionClass: 'toast-top-full-width'我无法让它工作。它仍然以默认设置打开,将其设置为我的应用程序配置。

   $scope.tabLeave = function () {
    toastr.warning('Warning', 'You have unsaved data.', {
      closeButton: true,
      positionClass: 'toast-top-full-width'
    });
  };

这里缺少什么?

4

2 回答 2

2
this.toastr.info('No credit remaining', '', { disableTimeOut: true, closeButton: true });
于 2019-05-27T08:47:08.463 回答
1

根据文档,似乎无法在 toast 中覆盖属性,但将在未来版本中更改:

常问问题

问:为什么我不能覆盖 toast 中的 positionClass?它被忽略。A: toasts 没有位置,它们附加到一个容器上,并且是那个在页面上设置了位置的容器。这将在未来的版本中进行更改。

于 2016-06-07T19:50:24.193 回答