在ajax中发送画布图像

时间:2013-09-05 12:14:24

标签: javascript cordova

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

theImage是输入类型=“文件” 知道ajax正在工作 但我不会将图像更改为URL,然后将其发送到我的服务器 它不起作用因为TheImage需要是目标文件

我可以将“img src”转换为目标文件吗?

        var theImage= $.theText;

警报($。theText)         fdata.append( 'JSON',JSON.stringify(VDATA));         fdata.append( '图像1',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();
            }
        });

0 个答案:

没有答案