2

我使用 PhoneGap 开发移动应用程序,并想问是否有办法使用 jQuery 的 ajax 将文件上传到服务器 (php)。我使用 ajax 是因为我想避免从网页重定向(当然,我想重定向到我自己的页面)。所以,这是我的一些代码:

$.ajax({
    url: url,
    data: $("#myform").serialize(),
    type: "post",
    dataType: "json"
});

我在下面尝试了这些组合,但没有任何效果。任何想法 ?

contentType: false
cache: false
processData: false
contentType: "multipart/form-data"
4

3 回答 3

1

您可能必须使用 PhoneGap 的 FileTransfer 类。

文档和一些示例代码在这里:http ://docs.phonegap.com/en/2.0.0/cordova_file_file.md.html#FileTransfer

于 2012-09-05T19:23:15.603 回答
1
<script>
$(document).ready(function(){
$('#button').click(function(){
    var formData = new FormData($('form')[0]);
    alert(formData)
    $.ajax({
        url: '/testupload2/',  //server script to process data
        type: 'POST',
        xhr: function() {  // custom xhr
            myXhr = $.ajaxSettings.xhr();
            if(myXhr.upload){ // check if upload property exists
            myXhr.upload.addEventListener('progress',progressHandlingFunction, false); // for handling the progress of the upload
            }
            return myXhr;
        },
        //Ajax events

        success: function(data){
            alert('Done')
        },
        error: function(jqXHR, textStatus, errorThrown){
            alert("Some Error!")
        },
        // Form data
        data: formData,
        //Options to tell JQuery not to process data or worry about content-type
        cache: false,
        contentType: false,
        processData: false
    });
});

function progressHandlingFunction(e){
    if(e.lengthComputable){
        $('progress').attr({value:e.loaded,max:e.total});
    }
}
</script>

HTML 正文部分:

<body>
<form enctype="multipart/form-data">
<input name="file" type="file" />
<input type="button" id ="button" value="Upload" />
</form>
<progress>
    progressHandlingFunction()
</progress>
</body>
于 2013-04-25T20:43:04.087 回答
0

您不能轻松地使用 AJAX 调用上传文件。

您可以对它进行基础编码或以不同的方式传输它,但是有很多用于 jQuery 的文件上传插件可以帮助您。

于 2012-09-05T11:15:16.490 回答