我开发了一个 secha toucha 应用程序,我想在其中使用 Phonegap 的相机功能。使用 phonegap 我可以访问设备相机并拍摄照片。但是当我在捕获照片后单击相机的“使用”按钮时,它应该存储在图像面板中。但注意到正在发生。这是我的代码。请帮忙,我真的卡住了!
onRegisterMain: function () {
this.hidefn();
modelMgr.campentry = this.getEntry();
Ext.getCmp('cdcamptitle').hide();/*neetu hide*/
Ext.getCmp('userLogo').setHtml("<figure> <img src='img/imgDnr.png' alt='WIPRO_BLOOD_BANK'/></figure>");
Ext.getCmp('userLogo').on({
tap: function () {
navigator.camera.getPicture(onSuccess, onFail, { quality: 50, destinationType: Camera.DestinationType.DATA_URL});
function onSuccess(imageData) {
var image = document.getElementById('myImage');
image.src = "data:image/jpeg;base64," + imageData;
}
// console.log('tapped')
// this.pieChartDisplay();
},
scope: this
});