我想使用ionic的File本机插件但不知道如何使用。 这是我的代码:
var path = fileURI.substr(0, imageURI.lastIndexOf('/') + 1);
var name = fileURI.substr(imageURI.lastIndexOf('/') + 1)
File.readAsDataURL(path, name)
.then(function (base64) {
console.log(base64);
})
当我运行代码时,我得到一个包含未定义消息的TypeError。使用文件插件的正确方法是什么?