0
    var theImage= $(".login_input_camera").prop("files")[0];

theImage は入力 type="file" です ajax が機能していることはわかっていますが、theImage を URL に変更してから ajax でサーバーに送信する必要はありません。TheImage はオブジェクト ファイルである必要があるためです。

「img src」をオブジェクトファイルに変換できますか?

        var theImage= $.theText;

alert($.theText) fdata.append('json',JSON.stringify(vdata)); fdata.append('image1',theImage);

    $.ajax({
        url:'http://192.211.50.206/users/signUp?userName=' + vUserName + '&uniqueDeviceId=' + device.uuid +'',
        data: fdata,
        cache: false,
        contentType: false,
        processData: false,
        type:'POST',
        success: function (data)
                {
                    alert("success")
                    alert(data)
                    //$(".loading").hide();
                },
            error: function (ts) 
            {
                alert("notGood")
                alert(ts.responseText);
                allError(ts.responseText)
                $(".loading").hide();
            }
        });
4

0 に答える 0