2

chrome GCMのプッシュ通知の通知に日付、時刻などのデータをもっとリストアップしたい。ここに私のコードに示すように:

self.addEventListener('push', function(event) {
    console.log('Received a push message from local', event);

    var title = 'My title file. Testing on';
    var body = 'New Push Message.';
    var icon = 'refresh_blueicon.png';
    var tag = 'my-push-tag';

    event.waitUntil(fetch('http://localhost/pushMsg/Push_Notification/msg.php').then(function(response) {
        if (response.status !== 200) {
            console.log('Looks like there was a problem. Status Code: ' + response.status);
            throw new Error();
        }

        // Examine the text in the response
        return response.json().then(function(data) {
            self.registration.showNotification(data.title, {
                body: data.msg,
                icon: icon,
                tag: tag
            }) // here i want to add more, need to know what is possible to add
        })
    })
);

この通知ウィンドウに日付と時刻を追加するにはどうすればよいですか? 以下に例を示します。

ここに画像の説明を入力

4

0 に答える 0