cordova / phonegap - 如何在独立存储中写入,Windows Phone 8

时间:2014-10-27 18:22:15

标签: cordova windows-phone-8 isolatedstorage

将我的应用从Android移植到WP8,我在 // myDir / MyFile.html

中使用cordova API编写/阅读

这是我的javascript代码:

function writeOnFileSystem() {   
    window.resolveLocalFileSystemURI(
                "/", onSuccess,
                onError);
}

function onSuccess(entry) { 
    entry.getDirectory("myDir", {
        create: true,
        exclusive: false
    }, onGetDirectorySuccess, onGetDirectoryFail);
 }

function onError(error) {
    console.log("onError ...");
}

function onGetDirectorySuccess(dir) {
     dir.getFile("myFile.html", {
        create: true,
        exclusive: false
    }, gotFileEntry, fail);
}

...

function readFile() {
    window.resolveLocalFileSystemURL(
            "//MyDir/myFile.html", gotFSRead,
            onErrorRead);
}
  • 在我的应用程序的独立存储中写入的路径是什么?

0 个答案:

没有答案