Everyone
我想使用相机插件获取带有图像扩展名的图像名称。 我们如何在 Ionic2 中实现这一目标。谢谢
这是我的代码:
图像选择器功能
ImagePick() {
let options = {
destinationType : Camera.DestinationType.DATA_URL,
sourceType : Camera.PictureSourceType.PHOTOLIBRARY,
quality: 100,
targetWidth: 1000,
targetHeight: 1000,
encodingType: Camera.EncodingType.JPEG,
correctOrientation: true
};
Camera.getPicture(options).then((imageData) => {
// If it's base64:
this.base64Image = imageData;
}, (err) => {
});
}
查看console.log()
或debugger;
它可用于注销内容或检查属性。您需要查看从承诺返回的imageData
,并猜测它至少会包含文件路径。网上有很多关于如何从文件路径获取文件名的信息。