我从过去 20 天左右开始研究煎茶,我学到了很多东西,我可以访问设备相机并使用该相机拍摄照片,但问题是我想在我的页面的 Div 中显示捕获的图像使用按钮 .. 无法解决;如果有人知道,请提供帮助 .. 看看这个 ..
{
xtype:'button',
text:'Tap',
docked:'top',
handler:function(){
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: Camera.DestinationType.FILE_URI });
function onSuccess(imageURI) {
var image = document.getElementById('myImage');
image.src = imageURI;
}
function onFail(message) {
Ext.Msg.alert('Failed because: ' + message);
} }
},
{
xtype:'container',
html:'<div style="border:solid;border-color:red">Hello</div>',
id:'picture',
},
{
xtype:'container',
html:'<div style="border:solid; border-color=green">Hellow</div>',
items:[
{
xtype:'button',
text:'Get',
}
]
},
我现在该怎么办??