cordova Android和Windows的问题,requestFileSystem

wz3gfoph  于 2022-11-15  发布在  Android
关注(0)|答案(1)|浏览(126)

我使用Cordova 3.6.3,我有一部Android 8.0手机。这段代码不起作用,应用程序不记录任何类型的错误,甚至循环“try-catch”功能。想法?这部手机是一个BlackView。

var getFileSystemRoot = (function() {

  var root;

  var init = function() {
      window.requestFileSystem(LocalFileSystem.PERSISTENT, 1024*1024,
          function(fileSystem) {
              root = fileSystem.root;
          }, 
          onFileSystemError);
  };
  document.addEventListener("deviceready", init, true); 

  return function() {
      return root;
  };
}()); // execute immediately
8fq7wneg

8fq7wneg1#

***window.requestFileSystem()***方法已过时,不应使用。

See the linked MDN docs:虽然有些浏览器可能仍然支持它,但它可能已经从相关的Web标准中删除,可能正在被删除,或者可能只是为了兼容性而保留。

相关问题