gpt4 book ai didi

javascript - 从 Ionic 中的 FILE_URI 获取文件名和扩展名

转载 作者:行者123 更新时间:2023-11-29 18:01:36 25 4
gpt4 key购买 nike

我需要一些关于如何获取文件名称的提示,该文件已由 cordova 相机插件选取/拍摄。这是代码,我有一张图片:

var options = {destinationType: Camera.DestinationType.NATIVE_URI};
options.sourceType = sourceType;
$cordovaCamera.getPicture(options).then(function (newURI) {
imageFileURI = newURI;
console.log('NATIVE_URI:\n' + imageFileURI);
//I need to get the file name and extension here
window.plugins.Base64.encodeFile(imageFileURI, function (base64Image) {
base64Data = base64Image;
}, function (error) {
console.log('Error while converting to base64: ' + error);
});
}, function (error) {
console.log('Error while picking a photo: ' + error);
});

有没有办法,我怎样才能在我需要的地方获得文件名和扩展名?谢谢

最佳答案

var fileName = imageFileURI.substr(imageFileURI.lastIndexOf('/') + 1);

以上代码获取文件名。

var fileExtension = filename.substr(filename.lastIndexOf('/') + 1);

这将获取文件扩展名。

关于javascript - 从 Ionic 中的 FILE_URI 获取文件名和扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34545789/

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