Chrome App文件系统不存在

时间:2015-12-24 03:54:53

标签: javascript file google-chrome google-chrome-app

我正在撰写Chrome应用。 我有我的manifest.json:

"permissions": [
    {"fileSystem": ["write", "retainEntries", "directory"]},
    "storage"
  ],
  "file_handlers": {
    "text": {
      "types": [
        "text/*"
      ]
    }
  }

在控制台中,如果我评估:

chrome.fileSystem

我得到:undefined 它看起来要么我没有权利,要么我必须 做魔术加载"加载" fileSystem代码。 非常感谢!

1 个答案:

答案 0 :(得分:0)

事实证明,当我重启chrome时, 瞧,chrome.fileSystem现在有效。 即使我关闭并重新打开了 应用程序多次与bug持续存在, 我需要重新启动Chrome。 当其他人失败时,重启!