赞
踩
这个是报错信息:
{"code":12,"message":"No Activity found to handle Intent { act=android.intent.action.PICK typ=video/* }"}
newCreditApplyRecord.galleryVideo = function() {
// 从相册中选择图片
mui.toast("从相册中选择一段视频");
plus.gallery.pick(function(path) {
console.log("从相册中选择了:" + path);
plus.io.resolveLocalFileSystemURL(path, function(entry) {
entry.file(function(file) {
//得到file对象
console.log("得到选择的视频:" + file.size + '--' + file.name + "--" + file.fullPath);
selectVideoElement.parentElement.querySelector("#showImg").src = "../../appres/images/video.jpg";
imgPathsArray['video'] = file;
});
});
}, function(e) {
mui.toast("取消选择视频"+JSON.stringify(e));
console.log(JSON.stringify(e));
}, {
filter: "video",
multiple: false
});
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。