我正在開發一款應用程序,您可以用手機拍照併發送至社交網絡。 我的應用程序是用sencha touch 2和Phonegap開發的。 當我嘗試拍照時,我的應用程序重新啓動,並給我一個錯誤'相機取消'。 我試着看console.logs但它們不會出現...錯誤'相機已取消' - 帶有PhoneGap的應用程序Sencha
這裏是我的代碼:
function uploadPhoto(data){
// this is where i will send the image file to server
//output image to screen
console.log(data);
}
function fail(msg){
alert(msg);
}
navigator.camera.getPicture(uploadPhoto, fail, {
quality : 30,
destinationType: Camera.DestinationType.DATA_URL
});</i>
我試過phonegap 2.3.0,現在我已經試過2.6.0,沒有成功!我會現在嘗試2.7.0,如果作品... – 2013-05-02 17:43:21
我試着用2.7.0而沒有任何東西!我在我的手機上進行了測試,並給出了同樣的錯誤。 – 2013-05-02 17:57:39