在我的代码中,我试图从图库上传文件。为此,我使用了相机插件,并试图只允许少于50MB的文件。有没有办法在从图库浏览时限制文件大小。以下是我的代码。
this.camera.getPicture({
quality: 50,
destinationType: this.camera.DestinationType.FILE_URI, // <== try THIS
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
mediaType: this.camera.MediaType.VIDEO,
}).then((imageData) => {
}, (err) => {
console.log(err);
});