我正在尝试使用Cordova插件照相机从Gallery获取图像,并使URL低于2种不同的URL,其中一种以“ content:// ....”开头的URL不会显示在图像src中。
工作网址 a)file:///storage/emulated/0/Android/data/com.adobe.phonegap.app/cache/necklace.png?1547012671888
无效的网址 b)content://com.miui.gallery.open/raw/%2Fstorage%2Femulated%2F0%2FDCIM%2FCamera%2FIMG_20190108_181955.jpg
我已经根据PhoneGap文档中的白名单在config.xml和index.html文件中设置了CSP,但仍无法正常工作。
仅当我创建apk,安装在设备中并从图库中选择图片时,这种情况才会发生。
当前,我正在使用Android版本7.1.2。
有人对此有想法吗?
index.html
<View style={{flex: 0.8, marginTop: 20}}>
<Image style={{width: '100%', height: null, flex:1}} resizeMode="cover" source=
{{uri: item.item.posts[0].imageUrl}} />
</View>