我想将文件上传到django视图并将其传递给转换函数,该函数执行其他所有操作。转换函数db_transform_and_save
需要类似文件的对象。到目前为止,我的工作解决方案是:
class UploadView(FormView):
template_name = 'mytemplate.html'
form_class = MyUploadForm
def form_valid(self, form):
db_transform_and_save(form.cleaned_data['my_upload'].read())
我的问题是:
db_transform_and_save
函数会永远运行吗?我正在运行这个django应用程序,带着一个枪手,4名工人。
答案 0 :(得分:0)
db_transform_and_save
中查看!)