MoSync重新加载在HTML上工作但不在webview中的captureImage

时间:2014-02-09 16:24:12

标签: html webview reload

我有一个html页面,它使用我的iphone上的相机并返回一个警报。它作为一个Web应用程序工作正常,但当我尝试使用原生ui webview相机仍然被调用,但没有警报。知道为什么吗?

 function getImage()
 {
     navigator.device.capture.captureImage(      
        function(success){
            alert('getImageSuccess');
        },          
        function(error){
            alert('getImageFailure');
        }
    );

 }

0 个答案:

没有答案