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> 

であります以下のコンソールからのエラーです。

Error

以下試み:linkタグのtype attributeを変更

  • を。
  • linkscriptタグの先頭には、headのindex.jspタグが移動しました。

どのようなヘルプも高く評価されます。

答えて

0

私はあなたがすでにそれを解決したと思います。しかし、そうでない場合は/manifest.jsonの代わりに<link rel="manifest" href="manifest.json"/>を試してください。

関連する問題