我在尝试通过AJAX请求将图像发送到Django时遇到问题。
这是我的HTML:

<form>
<input type="file" id="files" name="image">
</form>


这是我的JS:

var control = document.getElementById("files");
var p = {
        title: $('input[name=title]').val(),
        subtitle: $('input[name=subtitle]').val(),
        content: $('textarea#article-content').val(),
        image: files[0],
    };
    $.ajax({
        url: '/prive/nouveau-projet',
        type: "POST",
        data: JSON.stringify(p),
        crossDomain: true,
        success: function() {
            window.location.href = '/prive/projets/';
        },
        error: function() {
            console.log("error");
        }
    });


这是我的服务器端代码:

if request.method == "POST":
    data = request.POST.keys()[0]
    dataJson = json.loads(data)
    p = Projet(title=dataJson['title'], subtitle=dataJson['subtitle'], content=dataJson['content'], image=dataJson['image'])
    p.save()
    return HttpResponse()


那是我尝试过的方法,但出现有关dataJson['image']的错误。请问你能帮帮我吗 ?

最佳答案

您不需要JSON.stringify

就像这样写:

var data = new FormData();
var img = $('#image_field_id')[0].files[0];
data.append('img', img);
$.ajax({
    url : "/prive/nouveau-projet",
    processData : false,
    contentType : false,
    type : 'POST',
    data : data,
}).done(function(data) {
    // work with data
});


并在意见

if request.method == "POST":
    file = request.FILES.get('img') # FILES instead of POST
    ....

关于javascript - 通过Ajax将文件发送到Django,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27488832/

10-11 08:23