14

这个例子永远留在屏幕上:

小吃店演示.ts

import {Component, ViewContainerRef} from '@angular/core';
import {MdSnackBar, MdSnackBarConfig} from '@angular/material';

@Component({
  moduleId: module.id,
  selector: 'snack-bar-demo',
  templateUrl: 'snack-bar-demo.html',
})
export class SnackBarDemo {
  message: string = 'Snack Bar opened.';
  actionButtonLabel: string = 'Retry';
  action: boolean = false;

  constructor(
      public snackBar: MdSnackBar,
      public viewContainerRef: ViewContainerRef) { }

  open() {
    let config = new MdSnackBarConfig(this.viewContainerRef);
    this.snackBar.open(this.message, this.action && this.actionButtonLabel, config);
  }
}

我怎样才能让它在 2 秒后消失(以某种方式设置持续时间/超时)?

4

4 回答 4

12

使用 Angular 材质 2.0.0-alpha.11,您现在可以为小吃店添加超时。

open() {
    let config = new MdSnackBarConfig();
    config.duration = 10;
    this.snackBar.open("Message", "Action Label", config);
}
于 2016-12-09T07:58:09.540 回答
9

这应该工作

open(msg,t=2000) {
        let config = new MdSnackBarConfig(this.viewContainerRef);
        let simpleSnackBarRef = this.snackBar.open(msg, 'ok, gotcha', config);
        setTimeout(simpleSnackBarRef.dismiss.bind(simpleSnackBarRef), t);
    }
于 2016-10-28T18:23:20.397 回答
5
this._snackBar.open('Your Text','',
    { 
      duration: 2000
  });
于 2021-05-13T11:55:53.997 回答
4

持续时间可以通过可选的配置对象传递:

this.snackBar.open(
    this.message,
    this.action && this.actionButtonLabel, { 
        duration: 2000
    }
);
于 2017-05-24T19:50:33.110 回答