如何将文件从 ajax 上传到 django 后端?

How to upload File from ajax to django backend?

知道如何将文件 (.pdf) 从 ajax 上传到 django 后端吗?

customerForm.addEventListener('submit', e => {
e.preventDefault()
$.ajax({
    type: 'POST',
    url: '',
    data: {
        'csrfmiddlewaretoken': csrf[0].value,
        'identity_type': $('#id_identity_type').val(),
        'identity_number': $('#id_identity_number').val(),
        'file': $('#id_file').val()
    },
    success: function(response) {
        console.log('SUCCESS')
    },
    error: function(error) {
        console.log(error)
    }
})

谢谢

有很多方法,但这里有一个link我觉得很简单

https://www.youtube.com/watch?v=g3h1OC3S5Lo

He/She 说明如何使用 ajax.

上传文件