關於react-native-image-picker使用過程中的坑
專案中使用的react-native-image-picker的版本是0.26.10,需要拍照或相簿中選一張圖片,然後上傳。
app通過返回的uri載入圖片顯示沒問題,但是上傳圖片有問題。
使用的是fetch+FormData的方式。
測試手機系統有 4.4、6.0、8.0。測試結果是4.4和6.0系統手機圖片正常上傳,8.0手機圖片上傳失敗。
showImagePicker = ()=>{
ImagePicker.showImagePicker(options, (response) => {
console.log('Response = ', response);
if (response.didCancel) {
console.log('User cancelled image picker');
}else if (response.error) {
console.log('ImagePicker Error: ', response.error);
}else if (response.customButton) {
console.log('User tapped custom button: ', response.customButton);
}else {
let source = { uri: response.uri };
// You can also display the image using data:
// let source = { uri: 'data:image/jpeg;base64,' + response.data };
this.setState({
avatarSource: source
});
}
});
}
通過列印response.uri的值,發現都是file://...
。android 7+系統,檔案路徑換成content://URI
試試。
檢視原始碼:
@ReactMethod
public void launchCamera(final ReadableMap options, final Callback callback){
...
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT) {
List<ResolveInfo> resInfoList = reactContext.getPackageManager().queryIntentActivities(cameraIntent, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo resolveInfo : resInfoList) {
String packageName = resolveInfo.activityInfo.packageName;
reactContext.grantUriPermission(packageName, cameraCaptureURI, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
}
...
}
grantUriPermission許可權新增,應該是大於android7.0系統才需要,因此遮蔽了上面程式碼中的if判斷及內部程式碼,直接改成
cameraIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
再檢視onActivityResult方法,返回的圖片路徑是在該方法裡面處理的。
@Override
public void onActivityResult(Activity activity, int requestCode, int resultCode, Intent data) {
...
// don't create a new file if contraint are respected
if (imageConfig.useOriginal(initialWidth, initialHeight, result.currentRotation))
{
responseHelper.putInt("width", initialWidth);
responseHelper.putInt("height", initialHeight);
fileScan(reactContext, imageConfig.original.getAbsolutePath());
}
else
{
imageConfig = getResizedImage(reactContext, this.options, imageConfig, initialWidth, initialHeight, requestCode);
if (imageConfig.resized == null)
{
removeUselessFiles(requestCode, imageConfig);
responseHelper.putString("error", "Can't resize the image");
}
else
{
// uri = Uri.fromFile(imageConfig.resized);////github 上對應版本的
uri = RealPathUtil.compatUriFromFile(reactContext, imageConfig.resized);
BitmapFactory.decodeFile(imageConfig.resized.getAbsolutePath(), options);
responseHelper.putInt("width", options.outWidth);
responseHelper.putInt("height", options.outHeight);
updatedResultResponse(uri, imageConfig.resized.getAbsolutePath());
fileScan(reactContext, imageConfig.resized.getAbsolutePath());
}
}
...
}
原始碼中,Uri.fromFile(imageConfig.resized)
替換為uri = RealPathUtil.compatUriFromFile(reactContext, imageConfig.resized);
public static @Nullable Uri compatUriFromFile(@NonNull final Context context,
@NonNull final File file) {
Uri result = null;
//github 上對應版本的: SDK_INT<21
if (Build.VERSION.SDK_INT < 24) {
result = Uri.fromFile(file);
}
else {
final String packageName = context.getApplicationContext().getPackageName();
final String authority = new StringBuilder(packageName).append(".provider").toString();
try {
result = FileProvider.getUriForFile(context, authority, file);
}
catch(IllegalArgumentException e) {
e.printStackTrace();
}
}
return result;
}
原始碼中,compatUriFromFile方法SDK_INT<21
,改成了24,和android 7對應上。測試時沒問題,不知道為啥作者用的是21。
檢視了react-native-image-crop-picker,開啟相機功能時,也是SDK_INT<21
。
private void initiateCamera(Activity activity) {
try {
Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File imageFile = createImageFile();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
mCameraCaptureURI = Uri.fromFile(imageFile);
} else {
mCameraCaptureURI = FileProvider.getUriForFile(activity,
activity.getApplicationContext().getPackageName() + ".provider",
imageFile);
}
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCameraCaptureURI);
if (cameraIntent.resolveActivity(activity.getPackageManager()) == null) {
resultCollector.notifyProblem(E_CANNOT_LAUNCH_CAMERA, "Cannot launch camera");
return;
}
activity.startActivityForResult(cameraIntent, CAMERA_PICKER_REQUEST);
} catch (Exception e) {
resultCollector.notifyProblem(E_FAILED_TO_OPEN_CAMERA, e);
}
}
另一個上傳圖片的思路就是使用rn-fetch-blob,不是用fetch,返回的uri資料為:file:\\URI
。(暫時未驗證)
相關文章
- 避坑指南:關於SPDK問題分析過程
- vue-element-admin 使用過程中踩坑Vue
- npm包使用過程中遇到的坑,長期更~NPM
- js中new關鍵字的使用過程JS
- 關於最近開發小程式中踩過的那些坑
- 記使用pdf.js過程遇到的坑JS
- mpvue & 小程式開發過程中的坑Vue
- 關於ubuntu安裝中過程遇到問題Ubuntu
- 關於typedef和struct使用過程中的一些思考(2020/12/23更新)Struct
- 關於 Angular 應用的 Bootstrap 過程Angularboot
- 關於tsup工具構建專案庫使用過程
- 開發小程式過程中採坑
- 關於 AppCrawler 執行過程中的幾個小問題APP
- 嘗試 WebGPU 過程中掉的一些坑WebGPU
- 關於 JS 陣列,物件 length 使用的坑JS陣列物件
- 關於centos 7安裝binwalk的過程中產生的問題CentOS
- Springboot 開發過程中遇到坑點 (一)Spring Boot
- thrift使用過程中的問題
- keycloak~關於社群登入的過程說明
- 關於SQL Server中儲存過程在C#中呼叫的簡單示例SQLServer儲存過程C#
- 通過PAML中的CODEML模組計算dnds的過程以及踩坑
- 使用ABP框架中踩過的坑系列2框架
- 關於Entity Freamwork 儲存過程操作儲存過程
- 關於calc的踩坑
- Android小部件Widget開發過程中的坑和總結Android
- SpringFlux中Request與HandlerMapping關係的形成過程SpringUXAPP
- JasperReport 中踩過的坑
- Laravel 使用 swoole 協程遇到的坑Laravel
- SAP實施過程中關鍵使用者應發揮的作用(轉)
- 總結開發過程踩到的坑(一)
- Nebula 2.5.0安裝過程及遇到的坑
- 關於協程的理解
- 關於 session 未到設定的過期時間就過期的問題(分享坑點)Session
- (轉)git中關於fetch的使用Git
- 關於jqGrid+mybatisplus遇到的坑MyBatis
- 關於 ulimit 的兩個天坑MIT
- 【ansible】關於ansible執行過程中載入環境變數問題變數
- 【AppStore】聊一聊關於IOS應用上架Appstore稽核不透過的坑APPiOS