Chrome通知中的振动模式不适用

时间:2018-01-05 13:33:38

标签: javascript google-chrome notifications vibrate

我正在通过Chrome和服务工作者向Android设备(7.0和8.1)发送通知。 在服务工作者中,我正在创建这样的通知:

const pattern = [500, 250, 500, 250, 500, 250, 500, 250, 500, 250, 500];

self.registration.showNotification(title, {
                    body: body,
                    icon: 'img/icon_256.png',
                    badge: 'img/icon_256.png',
                    vibrate: pattern,
                    tag: `ticket-${cartName}`,
                    renotify: ticketsToShow.length > 0,
                    actions: [{ action: 'overview', title: 'Übersicht öffnen' }],
                    data: { sessionId },
});

收到通知并振动,但不管我放入模式const的数字(或者让它直接振动),我总会得到默认的振动模式(2彼此之后非常短暂的振动。)

我也尝试使用here提供的示例,但总是有相同的结果......只有2次非常短的振动)

0 个答案:

没有答案