打开页面就调用不了相机了 求解惑 不新开页面直接将需要调用相机的页面设为首页可以正常打开
mui.openWindow('smcode.html', 'smcode.html', {
show: {
aniShow: 'slide-in-bottom',
duration: 300,
},
styles: {
hardwareAccelerated: true,
}
});
调用相机
var cmr = plus.camera.getCamera();
cmr.captureImage(function(p) {
plus.io.resolveLocalFileSystemURL(p, function(entry) {
var path = entry.toLocalURL();
compressImage(path, imgID)
});
}, function(error) {
alert("照片添加失败: " error.message);
});
0 个回复