gpt4 book ai didi

cordova - 如何使用phonegap上传doc,txt文件

转载 作者:行者123 更新时间:2023-12-02 01:54:38 26 4
gpt4 key购买 nike

我正在开发一个想要上传文件(doc、txt 等)的 phonegap android 应用程序。谁能帮我找到这方面的教程。

最佳答案

要上传/下载 img、txt 或 doc 文件,只需使用 File Api(文件传输)
有关更多详细信息,请使用此链接 http://docs.phonegap.com/en/edge/cordova_file_file.md.html#FileTransfer

    var win = function (r){

}

var fail = function (error) {

}

var options = new FileUploadOptions();
options.fileKey = "file";
options.fileName = fileURI.substr(fileURI.lastIndexOf('/') + 1);
options.mimeType = "text/plain";
var params = {};
params.value1 = "test";
params.value2 = "param";
options.params = params;
var ft = new FileTransfer();
ft.upload(fileURI, encodeURI("http://some.server.com/upload.php"), win, fail, options);

关于cordova - 如何使用phonegap上传doc,txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20943517/

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