通用Windows平台(UWP)中的Javascript中的Toast expirationTime不起作用

时间:2017-07-24 03:30:23

标签: javascript uwp

我在30秒后设置了toast expirationTime。我预计吐司会在30秒后消失,但在约5-10秒后消失。这是我的代码:

var toast = new notifications.ToastNotification(toastXml);
var currentTime = new Date();
toast.expirationTime = new Date(currentTime.getTime() + 30 * 1000);
var toastNotifier = notifications.ToastNotificationManager.createToastNotifier();
toastNotifier.show(toast);

0 个答案:

没有答案