标签: python django file-upload filefield
如果我通过Ajax将文件上传到我的网站,并且我有它的路径,有没有办法将这条路径提交给Django表单的内置FileField?
答案 0 :(得分:1)
我认为您可以从类似文件的对象构造UploadedFile实例,将其放入dict {'name': temporary_uploaded_file}并将其提供给表单的files参数。没有尝试过,但应该工作。
UploadedFile
{'name': temporary_uploaded_file}
files