Manifest.json错误

时间:2018-04-13 14:49:48

标签: javascript json manifest

我正在尝试制作一个我写进步的应用程序。

我收到指向manifest.json文件的错误......

错误显示,Line:1,Column:1,Unexpected Token。

这是我的清单文件

{   " manifest_version":2,   "姓名":" Blah Blah Blah",   " short_name":" Analysis App",   " theme_color":"#fddb2f",   " background_color":"#fddb2f",   "显示":"独立",   "范围":" /",   " start_url":" /",   "版本":" 1",   "图标":[     {       " src":" images / icons / icon-72x72.png",       "尺寸":" 72x72",       "输入":" image / png"     },     {       " src":" images / icons / icon-96x96.png",       "尺寸":" 96x96",       "输入":" image / png"     },     {       " src":" images / icons / icon-128x128.png",       "尺寸":" 128x128",       "输入":" image / png"     },     {       " src":" images / icons / icon-144x144.png",       "尺寸":" 144x144",       "输入":" image / png"     },     {       " src":" images / icons / icon-152x152.png",       "尺寸":" 152x152",       "输入":" image / png"     },     {       " src":" images / icons / icon-192x192.png",       "尺寸":" 192x192",       "输入":" image / png"     },     {       " src":" images / icons / icon-384x384.png",       "尺寸":" 384x384",       "输入":" image / png"     },     {       " src":" images / icons / icon-512x512.png",       "尺寸":" 512x512",       "输入":" image / png"     }   ]   " splash_pages":null }

这就是我在html中引用它的方式

 <link rel="manifest" href="/manifest.json">

我不知道为什么我会收到此错误?

有人可以帮忙吗??

非常感谢

2 个答案:

答案 0 :(得分:3)

尝试将href =“ ./ manifest.json”与“。”一起使用/

之前

答案 1 :(得分:1)

我遇到了同样的问题,但解决了50%。

我从https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/

测试了它的Google教程

当我在Web服务器上用根文件夹(选择文件夹= Current / pwa_weather)将其设置为chrome时,它可以100%工作。我可以像https://localhost:8888一样访问它。

但是,当我通过https://xxxx.azurewebsites.net/pwa_weather之类的访问权限将其设置为Azure时,则不起作用。

我认为menifest.json必须位于Web根文件夹中。我什至没有用utf8bom文件格式修改manifest.json。另外,使用绝对路径(如。,

)修改index.html。