使用phonegap应用程序上传图像

时间:2018-06-18 11:15:20

标签: cordova file-upload camera phonegap-plugins file-transfer

我似乎碰到了试图使用Phonegap应用程序和服务器端的ASP.net页面将照片上传到服务器的问题。我已经多次检查过我的代码了,编写aspx服务的人已经检查了他们的一面。我正在使用filetransfer和文件插件,并且在使用代码1调用upload方法时发生了应用程序错误。 我首先尝试使用简单的请求AJAX在服务器上传图像并且它可以工作。但是当使用phonegap插件时,它不起作用。 这是我的代码:

function getImage() {
        navigator.camera.getPicture(uploadPhoto, function(message) {
            alert('get picture failed');
        }, {
            quality: 100,
            destinationType: navigator.camera.DestinationType.FILE_URI,
            sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
        });

    }

function uploadPhoto(imageURI) {
        alert("entrer dans uploadPhoto");
        var options = new FileUploadOptions();
        options.fileKey = "file";
        options.fileName = imageURI.substr(imageURI.lastIndexOf('/') + 1);
        options.mimeType = "image/jpeg";
        console.log(options.fileName);
        var params = new Object();
        params.value1 = "test";
        params.value2 = "param";

        options.params = params;
        options.chunkedMode = false;

        var ft = new FileTransfer();
        ft.upload(imageURI, "http://192.168.100.165/ProjetCourtageServerSide/DownloadDocumentSinistre.aspx", function(result){
            alert(JSON.stringify(result));
        }, function(error){
            alert(JSON.stringify(error));
        }, options);
    }

1 个答案:

答案 0 :(得分:0)

我认为您的问题是以错误的方式提出的,您是否可以尝试提供有关您真实问题的更多规范? 并且可能会在您下次发布问题时尝试隐藏您的IP地址和网址!