gpt4 book ai didi

javascript文件cordova..如何通过变量传递值

转载 作者:行者123 更新时间:2023-12-01 05:39:01 24 4
gpt4 key购买 nike

我正在开发英特尔 Cordova 应用程序...要从服务器下载文件,我已经包含了cordova文件下载插件,但它有我想通过变量传递的数据...这是我的代码:

var app = {

fileName: "PointerEventsCordovaPlugin.wmv", //<-- pass this value through variable (dynamic)
uriString: "http://media.ch9.ms/ch9/8c03/f4fe2512-59e5-4a07-bded-124b06ac8c03/PointerEventsCordovaPlugin.wmv", // <-- this one also
// Application Constructor
initialize: function() {
this.bindEvents();
},

....我已经添加了 fileName 和 uristring..但我想从变量动态添加该值..我该怎么做? cordova plugin link如果您对此有所了解,请回复...

最佳答案

按照您提供的链接中的示例,从 app 对象中删除 fileNameuriString 字段,并参数化所需的函数。例如startDownload会变成:

startDownload: function (fileName, uriString) {

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(fileName, { create: true }, function (newFile) {
app.downloadFile(uriString, newFile);
});
});
},

关于javascript文件cordova..如何通过变量传递值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32048030/

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