错误 错误:未捕获(承诺中):找不到资产'/storage/emulated/0/DCIM/Restored/IMG_20200115_103131.jpg'



正在处理本机描述应用程序,需要访问映像并将其转换为base64。

.then(function(selection) {
selection.forEach(function (selected) {
imageSourceModule
.fromAsset(selected)
.then((imageSource) => {
var imageBase64 = imageSource.toBase64String("jpg",60);
console.log(imageBase64);

我在fromAsset中遇到了同样的问题,我通过这样做解决了它。

<application
...
android:requestLegacyExternalStorage="true"
...
</application>

相关内容

最新更新