0

我正在构建一个 Firefox OS 应用程序,并在以下代码行中:

var app = navigator.mozApps.install('mymanifest.webapp');

Firefox 控制台抛出错误:

Error: NS_ERROR_FAILURE: INVALID_URL: '/mymanifest.webapp', Source File: resource://gre/components/Webapps.js, Line: 87

我的 MVC 控制器是这样的:

public ContentResult FirefoxOsManifest()
{
    string json = GetManifestJson(); // a method that returns json string

    return Content(json, "application/x-web-app-manifest+json");
}

我已将.webappmimetype 添加到我的 IIS,重新启动 IIS,重新启动World Wide Web Publishing Service,重新启动浏览器,验证清单,但仍然出现错误。我错过了什么?

4

1 回答 1

1

Mozilla 的某个人就此回复了我。

We currently do not support installation of web apps through a relative URL. You need to use an absolute URL path to the webapp manifest.

于 2013-07-25T15:08:05.360 回答