我正在测试 getPicture API 以从图库中获取图片。
我写了这个:
navigator.camera.getPicture(
this.onSuccess,
this.onFail,
{
destinationType: Camera.DestinationType.DATA_URL,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
allowEdit: false,
mediaType: Camera.MediaType.PICTURE,
}
然后,我得到:
无法打开“/mnt/sdcard/Android/data/com.myapp/cache/Pic.jpg”
我认为PhoneGap默认尝试将缓存放在sd卡中。我的“Google Nexus”没有。
有人有同样的问题吗?
[编辑]
我在我的清单中获得了这个许可,但它并没有改变任何东西:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>