0
はローカルホストのプッシュ通知は、manifest.jsonにアクセスできません。 マニフェストに空または不完全なエラーを通知するWebアプリケーションのプッシュ通知
- manifest.jsonを、ルートであるhttps://developers.google.com/web/fundamentals/getting-started/push-notifications/
マイmanifest.jsonを内容(隠されたプロジェクト番号)
"name": "xyz", "short_name": "x", "icons": [{ "src": "images/icon_add.gif", "sizes": "192x192", "type": "image/gif" }], "start_url": "my_link", "display": "standalone", "gcm_sender_id": "my_app_id", "gcm_user_visible_only": true
NOTEからの手順に従いました。
- manifest.jasonへのリンクは、
<head>
の先頭です。 <head>
はindex.jspを開始/最初の要素localhost:8080/XYZ/index.htm
とポップアップ通知では動作しませんを開設
index.jspを
<head>
<link rel="manifest" href="/manifest.json"/>
<script src="javascript/main.js"></script>
.....
web.xmlの
<web-app id="XYZ">
<display-name>XYZ</display-name>
.....
<welcome-file-list>
<welcome-file>index.htm</welcome-file>
</welcome-file-list>
であります以下のコンソールからのエラーです。
以下試み:link
タグのtype attribute
を変更
- を。
link
とscript
タグの先頭には、head
のindex.jspタグが移動しました。
どのようなヘルプも高く評価されます。