作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在使用 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/
我是一名优秀的程序员,十分优秀!