1

Android phonegap でプロジェクトを実行しています。ここでは、画像とビデオをリモートサーバーにアップロードしたいと考えています。次のリンクを使用しました。 http://zacvineyard.com/blog/2011/03/upload-a-file-to-a-remote-server-with-phonegap

また、 options.chunkedMode = false 、android:debuggable="true" および . しかし、それでもエラーコード3が表示されます。私はcordova-2.0.0.jsバージョンを使用しています。誰かが答えを提案できますか?

私のjsコードは

    **

<script type="text/javascript" charset="utf-8">

            // Wait for PhoneGap to load
    document.addEventListener("deviceready", onDeviceReady, false);

            // PhoneGap is ready
    function onDeviceReady() {
      // Do cool things here...
            }

    function getImage() {

                // Retrieve image file location from specified source
                navigator.camera.getPicture(uploadPhoto, function(message) {
                alert('get picture failed');
                },
                {quality: 50,
                destinationType: navigator.camera.DestinationType.FILE_URI,
                sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
                }
                );
    }

    function uploadPhoto(imageURI) {

                var options = new FileUploadOptions();
                options.fileKey="file";
                options.fileName=imageURI.substr(imageURI.lastIndexOf('/')+1);
                options.mimeType="image/jpeg";

                var params = new Object();
                params.value1 = "test";
                params.value2 = "param";

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

                var ft = new FileTransfer();
                ft.upload(imageURI, "url of ther server/upload.php", win, fail, options, true);
                console.log("H");
    }

    function win(r) {
                console.log("HIIIIIiiii");
                console.log("Code = " + r.responseCode);
                console.log("Response = " + r.response);
                console.log("Sent = " + r.bytesSent);
                alert(r.response);
    }

    function fail(error) {
                alert("There is something");
                alert("An error has occurred: Code = " + error.code);
    }

    </script>

**

そして私のphpコードは

<?php

print_r($_FILES);
$new_image_name = "namethisimage.jpg";
move_uploaded_file($_FILES["file"]["tmp_name"], "upload/".$new_image_name);

?>

ありがとう。

4

1 に答える 1

1

問題の URL をホワイトリストに追加しましたか?

たとえば、config.xml には次のようなものがありますか。

<access origin="www.myurl.com" subdomains="true" />

また

<access origin="*" />

これにより、すべての URL が許可されます。

ちなみにエラーコード3はFileTransferError.CONNECTION_ERRです。

于 2012-10-15T15:01:59.190 に答える