3

Phonegapを使用して標準の録音を行いました。

function recordSound() {

    var src = "mysound.mp3";
    var mediaRec = new Media(src, onSuccess, onError);

    // Record audio
    mediaRec.startRecord();

    // Stop recording after 10 sec
    var recTime = 0;
    var recInterval = setInterval(function() {
        recTime = recTime + 1;
        setAudioPosition(recTime + " sec");
        if (recTime >= 10) {
            clearInterval(recInterval);
            mediaRec.stopRecord();
        }
    }, 1000);

}

このファイル(mysound.mp3)を、ユーザーが自分で選択することなくアップロードしたいと思います。どんな助けでも大歓迎です。

これまでのところ、私は次のことを行いました。

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

function fail(error) {
    alert("An error has occurred: Code = " + error.code);
    console.log("upload error source " + error.source);
    console.log("upload error target " + error.target);
}

function up() {// !! Assumes variable fileURI contains a valid URI to a text
    // file on the device

    var fileURI = "/mnt/sdcard/mysound.mp3";
    var options = new FileUploadOptions();
    options.fileKey = "file";
    options.fileName=fileURI.substr(fileURI.lastIndexOf('/')+1);
    options.mimeType = "audio/mp3";

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

    options.params = params;

    var ft = new FileTransfer();
    ft.upload(fileURI, "http://myserver/upload.php", win, fail, options);
}

私は得る:java.io.IOException: Received from server

JSCallback Error: Request failed

助けてくれてうれしい。

4

2 に答える 2

4

この機能を使用してファイルをアップロードできます

function uploadVoice(fileName, dirName, fileMime, uploadURL) {

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

    // upload failure
    var fail = function(error) {
        alert("An error has occurred: Code = " + error.code);
    };

    // file system fail
    var fsFail = function(error) {
        alert("failed with error code: " + error.code);

    };

    var dirFail = function(error) {
        alert("Directory error code: " + error.code);

    };

    var fileURI;

    var gotFileSystem = function (fileSystem) {
        fileSystem.root.getDirectory(dirName, {
            create: false
        }, function (dataDir) {

            fileURI = dataDir.fullPath;
            fileURI = fileURI + '/' + fileName;

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

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

            options.params = params;

            var ft = new FileTransfer();
            ft.upload(fileURI, uploadURL, win, fail, options);

        }, dirFail);

    };

    // get file system to copy or move image file to
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFileSystem, fsFail);

}

お役に立てれば

于 2012-09-15T09:39:20.407 に答える
0

優秀な。iOSでは本当に助かりました。

var failの単純なタイプミスは以下で修正されました。

var fail = function(error) {
    alert("An error has occurred: Code = " + error.code);
};
于 2013-12-09T16:23:23.800 に答える