我使用cordova 3.4。当我捕获图像并设置它时,它工作正常,但当我尝试访问图库中的图像时,我得到了网址
content://com.android.providers.media.documents/document/image%4A463
我的图像标记中出现了图像加载错误。我知道这是一个知道的错误,我提到了诸如Unable to load image when selected from the gallery on Android 4.4 (KitKat) using PhoneGap Camera Plugin等堆栈问题
我无法使用粗略的工作来手动设置URI,例如内容:// media / external / images / media /因为我们将设备集中在内置存储设备(如Moto)
您也可以确认此问题已在cordova 3.5中修复。因为我需要获得我的官员的许可下载,我必须确保它是可以实现的。可以请某人帮忙
更新:
app.directive('upload', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
elm.on('click', function() {
navigator.camera.getPicture(
function(imageURI) {
scope.$apply(function() {
alert(imageURI);
ctrl.$setViewValue(imageURI);
});
window.resolveLocalFileSystemURI(imageURI, function(fileEntry) {
// ctrl.$setViewValue(imageURI);
alert("inside local file" + imageURI);
alert("Inside local file system");
fileEntry.file(function(fileObj) {
alert("hai");
var options = new FileUploadOptions();
options.fileKey = "file";
options.fileName = fileObj.name;
options.mimeType = fileObj.type;
var ft = new FileTransfer();
// var url = fileUploadUrl;
// ft.upload(imageUri, encodeURI(url), success, failure, options);
});
});
},
function(err) {
ctrl.$setValidity('error', false);
}, {quality: 50,
destinationType: Camera.DestinationType.FILE_URI,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY
}
);
});
}
};
});
我的HTML:
<img
ng-src="{{onepic}}"
width="250"
height="390"
alt="error"/>
我在watch函数中设置了onepic的值。当指令返回一个URI时,它将自动设置为onepic。请指定任何替代解决方案,或者如果我做错了什么,我是angularjs的新手
答案 0 :(得分:4)
试试这个..
在相机插件中有一个FileHelper.java
文件,用我的方法替换插件getRealPath
。
有关详细信息,请点击此处 - &gt; https://issues.apache.org/jira/browse/CB-5398
FileHelper.java
@SuppressWarnings("deprecation")
public static String getRealPath(String uriString, CordovaInterface cordova) {
String realPath = null;
final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
// DocumentProvider
if (isKitKat) {
Cursor cursor = cordova.getActivity().getContentResolver().query(Uri.parse(uriString), null, null, null, null);
cursor.moveToFirst();
String document_id = cursor.getString(0);
document_id = document_id.substring(document_id.lastIndexOf(":")+1);
cursor.close();
cursor = cordova.getActivity().getContentResolver().query(
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
null, MediaStore.Images.Media._ID + " = ? ", new String[]{document_id}, null);
cursor.moveToFirst();
String path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.Media.DATA));
realPath = path;
cursor.close();
}else{
if (uriString.startsWith("content://")) {
String[] proj = { _DATA };
Cursor cursor = cordova.getActivity().managedQuery(Uri.parse(uriString), proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(_DATA);
cursor.moveToFirst();
realPath = cursor.getString(column_index);
if (realPath == null) {
LOG.e(LOG_TAG, "Could get real path for URI string %s", uriString);
}
} else if (uriString.startsWith("file://")) {
realPath = uriString.substring(7);
if (realPath.startsWith("/android_asset/")) {
LOG.e(LOG_TAG, "Cannot get real path for URI string %s because it is a file:///android_asset/ URI.", uriString);
realPath = null;
}
} else {
realPath = uriString;
}
}
return realPath;
}
在CameraLauncher.java
类中,有一种方法processResultFromGallery
private void processResultFromGallery
找到这段代码:
if (this.targetHeight == -1 && this.targetWidth == -1 &&
(destType == FILE_URI || destType == NATIVE_URI) && !this.correctOrientation){
this.callbackContext.success(uri.toString());
}
并替换为:
if (this.targetHeight == -1 && this.targetWidth == -1 &&
(destType == FILE_URI || destType == NATIVE_URI) && !this.correctOrientation) {
String s =FileHelper.getRealPath(uri.toString(), cordova);
Log.i("test","<<<<ifURI::::::"+s +"URI::::" + uri.toString());
this.callbackContext.success(s);
}
答案 1 :(得分:2)
请参阅this回答:
if (imageUri.toString().substring(0,21).equals("content://com.android")) {
String [] photo_split= imageUri.toString().split("%3A");
String imageUriBasePath = "content://media/external/images/media/"+photo_split[1];
imageUri= Uri.parse(imageUriBasePath );
}
答案 2 :(得分:1)
每当uri
传递给<img src="uri" />
时,它就会从
内容://com.android.providers.media.documents/document/image%3A9888 (1)
到
内容://com.android.providers.media.documents/document/image:9888 (2)
但是,从Intent.ACTION_OPEN_DOCUMENT
或Intent.ACTION_GET_CONTENT
返回后,Android会为您提供(1)的读取权限,而不是(2)。在这种情况下,WebView
将期待记录错误:
java.lang.SecurityException:Permission Denial:read com.android.providers.media.MediaDocumentsProvider uri 内容://com.android.providers.media.documents/document/image:9888 从pid = 13163,uid = 10165需要 android.permission.MANAGE_DOCUMENTS或grantUriPermission()
或
无法打开内容网址
代码段
您需要解决的问题是
String uriToUseInWebView = transformForWebView(uri.toString());
private String transformForWebView(String uri) {
for (int i = 0; i < timesDecodingWebView(); i++)
uri = uri.replace("%", Uri.encode("%"));
return uri;
}
private int timesDecodingWebView() {
if (Build.VERSION.RELEASE.equals("4.4.2")) {
return 2;
} else {
return 1;
}
}
在将uri
传递给HTML / JS之前,在您的Java代码中以确保实际加载(1)。
我在4.4.2,4.4.4和5.0上测试了它。有趣的是,Android 4.4.2在内部对uri
进行了两次解码。