我正在尝试使用ionic / file-chooser插件帮助上传文件。一切都很完美,直到我没有要求上传doc或pdf文件。 我使用离子3.12.0和cordova 7.0.1。
const fileTransfer: FileTransferObject = this.transfer.create();
let options: FileUploadOptions = {
fileKey: 'files0',
fileName: 'name.jpg',
params: {
Authkey: this.CS.auth_key,
Token: this.CS.token,
group_id: this.CS.activeGroupId,
Userid: this.CS.userId
}
};
this.fileChooser.open()
.then(uri => {
this.CS.show_loader();
//alert(uri );
this.file.resolveLocalFilesystemUrl(uri)
.then((files)=> {
alert(JSON.stringify(files, null, 4));
}).catch((err) => {
alert(JSON.stringify(err, null, 4));
});
//let name = uri.split("/");
//options.fileName = name[name.length - 1];
// alert(options.fileName);
fileTransfer.upload(uri, this.CS.base_url + 'groups/uploadChat', options)
.then((data) => {
this.CS.hide_loader();
this.res = data;
//alert(JSON.stringify(data, null, 4));
let d = JSON.parse(this.res.response);
if(d.status == 1){
let a = {
member_id: this.user_id,
imageLink: this.groupChatData.loginUserData.imageLink,
message: '',
attachment: d.data[0].attachment,
member_name: this.CS.userData.name,
mime_type: d.data[0].mime_type,
attachment_imageUrl: d.data[0].attachment_imageUrl,
attachment_linkUrl: d.data[0].attachment_linkUrl,
send_at: Date.now()
};
this.group_chat.push(a);
setTimeout(() => this.content.scrollToBottom(), 200);
}else{
this.CS.alertMessage("error", this.res.response.message);
}
}, (err) => {
alert(JSON.stringify(err, null, 4));
})
})
.catch(e => alert(JSON.stringify(e, null, 4)));
resolveLocalFilesystemUrl返回类似这样的内容 -
既没有文件名也没有文件类型,那么如何将文件名发送到服务器?
答案 0 :(得分:2)
要获取文件名和文件mime,请尝试以下操作:
首先,您需要安装以下插件:
然后您可以执行以下操作:
this.fileChooser.open().then(uri =>
{
console.log(uri);
this.filePath.resolveNativePath(uri).then(filePath =>
{
this.filesPath = filePath;
this.file.resolveLocalFilesystemUrl(filePath).then(fileInfo =>
{
let files = fileInfo as FileEntry;
files.file(success =>
{
this.fileType = success.type;
this.filesName = success.name;
});
},err =>
{
console.log(err);
throw err;
});
},err =>
{
console.log(err);
throw err;
});
},err =>
{
console.log(err);
throw err;
});
这在android上有效,fileChooser.open()
插件将打开文件系统,以便您可以选择一个文件,filePath.resolveNativePath(uri)
将为您提供文件的路径。
方法resolveLocalFilesystemUrl(filePath)
将为您提供有关该问题的文件信息。它还返回Entry
类型的Promise,其中不包含名称和类型。
因此,您需要使用as
关键字将其强制转换为包含name
和type
的{{3}}。
fileUpload()
{
this.arrayType = ["txt", "pdf", "doc", "docx", "xls", "xlsx", "rtf", "gif", "csv"];
if(this.platform.is("ios"))
{
this.filePicker.pickFile().then(uri=>
{
console.log(uri);
this.filesPath = uri;
this.fileName = filesPath.substring(filesPath.lastIndexOf("/") + 1);
this.fileType = this.fileName.substring(this.fileName.lastIndexOf(".") + 1);
},err=>
{
console.log(err);
throw err;
});
}
else if(this.platform.is("android"))
{
this.fileChooser.open().then(uri =>
{
console.log(uri);
this.paths = uri;
this.filePath.resolveNativePath(uri).then(filePath =>
{
console.log(filePath);
this.filesPath = filePath;
this.fileName = filesPath.substring(filesPath.lastIndexOf("/") + 1);
this.fileType = this.fileName.substring(this.fileName.lastIndexOf(".") + 1);
if(this.arrayType.indexOf(this.fileType) > -1)
{
console.log("accepted type");
}
},err=>
{
console.log(err);
throw err;
});
},err=>
{
console.log(err);
throw err;
});
}
}
此解决方案同时适用于ios和android,在这里您首先检查用户正在使用的平台,然后使用FileEntry
插件,可以检索文件,并使用subString
得到名称和类型。关于android,您可以使用resolveNativePath(uri)
插件的filePath
方法获取文件的路径,然后使用subString
获取名称和类型。
您还可以检查文件的类型是否在类型数组中。