Django和Javascript:传递用于文件上传的其他变量

时间:2018-07-16 03:55:14

标签: javascript jquery django file-upload

好的,伙计们。我很沮丧我正在关注this博客上载文件。我试图对其进行修改,以使我的文件模型在另一个模型上具有外键。弹出模块有效,但提交则无效。提交文件时,我不断收到“ anothermodel_id字段为必填”错误,因此我需要将该字段传递给表单,但是我不确定如何传递。

我看到了javascript行function (e, data),并且我想我需要在此处添加变量,但是我似乎做不到。我不知道在哪里定义数据。

型号

class File(models.Model):
    anothermodel_id        = models.ForeignKey(anothermodel)
    file              = models.FileField(upload_to=upload_product_file_loc)

表格

class FileForm(forms.ModelForm):
    class Meta:
        model = File
        exclude = ()

views.py

class FileUploadView(View):
def get(self, request):
    files = File.objects.all()
    return render(self.request, 'anothermodel/files.html', {'files': files, 'anothermodel_id': 'rb6o9mpsco'})

def post(self, request):
    form =FileForm(self.request.POST, self.request.FILES)
    print(form.errors)
    if form.is_valid():
        photo = form.save()
        data = {'is_valid': True, 'url': photo.file.url}
    else:
        print('we are not valid')
        data = {'is_valid': False}
    return JsonResponse(data)

html

<div style="margin-bottom: 20px;">
<button type="button" class="btn btn-primary js-upload-photos">
  <span class="glyphicon glyphicon-cloud-upload"></span> Upload photos
</button>
<input id="fileupload" type="file" name="file" multiple
       style="display: none;"
       data-url="{% url 'anothermodel:file-upload' %}"
       data-form-data='{"csrfmiddlewaretoken": "{{ csrf_token }}"}'>

             

                     

    

javascript:

$(function () {
$(".js-upload-photos").click(function () {
    $("#fileupload").click(); 
    console.log('we clicked it')
    var anothermodelId = $("#start").find('.anotmodel_idId').val();
    console.log(anothermodelId)
  });
$("#fileupload").fileupload({
    dataType: 'json',
    done: function (e, data) {
      if (data.result.is_valid) {
        $("#gallery tbody").prepend(
          "<tr><td><a href='" + data.result.url + "'>" + data.result.name + "</a></td></tr>"
        )
      }
    }
  });

});

1 个答案:

答案 0 :(得分:0)

anothermodel_id是另一个模型的外键,在您的情况下,该字段也必须必须。从客户端上传数据时,没有为anothermodel_id字段发送任何值。因此,该字段将保持未填充状态,并且在保存表单时会出现错误。根据您在anothermodel_id字段中存储的内容,可能有几种解决方案。

如果该字段不是很重要,则可以将其保留为空:

class File(models.Model):
    anothermodel_id = models.ForeignKey(anothermodel, blank=True, null=True)
    file = models.FileField(upload_to=upload_product_file_loc)    

如果您要保存其他模型中的内容。根据您对代码的了解,您可以使用save类中的models.Model方法:

from django.contrib.auth.models import User

class File(models.Model):
    anothermodel_id = models.ForeignKey(User)
    file = models.FileField(upload_to=upload_product_file_loc)

    def save():
        if self.file:
            anothermodel_id = request.user

    super(File, self).save(*args, **kwargs)