gpt4 book ai didi

javascript - Cordova + RequireJS : How load the File-Plugin

转载 作者:行者123 更新时间:2023-11-29 15:35:56 25 4
gpt4 key购买 nike

我想在使用 RequireJS 构建的 Cordova (3.6.4) 应用程序中存储文件(图像)。

我制作了一个新模块,但我不知道如何使用 RequireJS 加载文件插件 (org.apache.cordova.file)。 window.requestFileSystem 始终未定义。我以为我必须加载文件系统(如模块中所述)但没有任何效果......

define(function (require) {

"use strict";

var $ = require('jquery'),
//FileSystem = require('/plugins/org.apache.cordova.file/www/FileSystem'),


download = function (URL, Folder_Name, File_Name) {
//step to request a file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, fileSystemSuccess, fileSystemFail);
},

return {
download: download
};
});

最佳答案

我找到了。这很容易(也有点尴尬)。我只是忘了加载 cordova 脚本本身,因为我此时不需要它...

我的应用现在从以下内容开始,一切正常。

require(['../cordova', '../cordova_plugins'], function () {

关于javascript - Cordova + RequireJS : How load the File-Plugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29133347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com