2013-05-28 37 views
1

我有一個目錄hello含有 1.JPG hello.webapp的index.html無法在Firefox OS模擬器讀取明顯錯誤

的index.html如下:

<html> 
<head> 
<title>Hello World!</title> 
</head> 
<body> 
Hello World! 
</body> 
</html> 

hello.webapp是如下:

{ 
"name": "Hello World", 
"description": "blah", 
"launch_path": "/index.html", 
"icons": { 
"128":"1.png" 
}, 
"developer": { 
"name": "Richard Sueselbeck" 
}, 
"default_locale": "en" 
} 

但是當我添加目錄到模擬器。它會拋出錯誤,無法讀取清單/home/user/Desktop/hello/hello.webapp

+1

是什麼在你的根目錄?正如你將'/index.html'放入root並且'1.png'沒有root –

回答

0

您是否嘗試將清單「1.png」更改爲「1.jpg」?

您是否嘗試過重命名hello.webappmanifest.webapp? (很好的解決方案)清單文件的

+0

@Shaardool哪一個幫了你? – Progi1984

+1

清單總是被命名爲「manifest.webapp」而不是「foo.webapp」 – Eldelshell

0

名稱應該是manifest.webapp,它應該是在你的項目的根文件夾

0

只是爲了說明模擬器無法讀取hello.webapp,因爲Firefox OS中清單的默認文件應該是manifest.webapp

請把下面的代碼到你的根目錄下名爲manifest.webapp新文件:

{ 
"name": "Hello World", 
"description": "blah", 
"launch_path": "/index.html", 
"icons": { 
"128":"1.png" 
}, 
"developer": { 
"name": "Richard Sueselbeck" 
}, 
"default_locale": "en" 
} 

感謝,