English 中文(简体)
保存前更改窗窗体 Djanngo 程序
原标题:Change Form Instance Django before Save

我试图在保存之前更改一个表格实例。 我需要在这样的视图中设置某些信息 :

 class UploadedFile(models.Model):

     file = models.FileField(storage=s3store, upload_to=custom_upload_to)
     slug = models.SlugField(max_length=50, blank=True)
     bucket = models.ForeignKey(S3Bucket, blank=False)
     uploaded_by = models.ForeignKey(User, related_name= uploaded_by , blank=False)
     company = models.ForeignKey(Company, blank=False)

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

class UploadForm(ModelForm):

    class Meta:
        model = UploadedFile    

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

form = UploadForm(request.POST, request.FILES)
form.instance.company_id = r_user.company.id
form.instance.uploaded_by_id = r_user.id
form.instance.bucket_id = r_user.company.s3_bucket_id
if form.is_valid():
     form_object = form.save()

现在,我知道表格无效,因为公司/上载/桶是空的:

错误表单 :

  • company
  • This field is required.
  • bucket
  • This field is required.
  • uploaded_by
  • This field is required.
  • 但我设定了它们! 难道我需要把它们变成空的吗? 然后做一个保存(承诺=false), 修改它们, 然后重新保存? 如果是这样, 为什么是呢? 我确实改变了形式... 。

    最佳回答

    ModelForm > 或您的代码中: form(request.POST) line, < a href="https://github.com/django/django/blob/master/django/forms/models.py#L246" rel="nofolpol" > 中,一个实例已经创建并包含在窗体 上。

    另外,如果您想要在后端自动填入某些字段,请不要将其变为用户。

    因此,是的,你可以让他们blank=True 建议的方式

    问题回答

    尝试此 :

    data = request.POST.copy()
    data[ company_id ] = r_user.company.id
    data[ uploaded_by_id ] = r_user.id
    data[ bucket_id ] = r_user.company.s3_bucket_id
    
    form = UploadForm(data, request.FILES)
    if form.is_valid():
         form_object = form.save()
    

    这样您就可以在创建窗体之前设置数据 。

    其实你在这里做一些奇怪的事

    First: Why do you assign to company_id, uploaded_by_id and bucket_id? However yout got those fields in your model - it s names of columns in table created for this model - you should use ORM features directly here e.g. form.instance.company = r_user.company.

    Second: Form validation is applied to form.fields not to it s instance attribute, and you can t change them once form is created and bounded to supplied values.

    将某些字段值添加到 Django 中以窗体创建的模型实例中的建议方式(如我一直以为的那样)是建立自定义模型格式,就像您所做的那样,并在 Meta 类中指定所有您想要用户编辑的字段。 对于您的情况:

    class UploadForm(ModelForm):
    
        class Meta:
            model = UploadedFile
            fields = ( file ,  slug )
    

    而不是调用 form_object = form.save () you call form_object = form.save (commit=False) 。 现在你已经得到了您在表格中填满所有字段的模型实例, 以便您可以添加您想要的 : 例如 form_object.corporation = r_user.company 。 最后不要忘记在模型实例中调用 save () 自己存储在数据库中。

    在Django文件





    相关问题
    How to get two random records with Django

    How do I get two distinct random records using Django? I ve seen questions about how to get one but I need to get two random records and they must differ.

    Moving (very old) Zope/Plone Site to Django

    I am ask to move data from a (now offline) site driven by Plone to a new Django site. These are the version informations I have: Zope Version (unreleased version, python 2.1.3 ) Python Version 2.1....

    Can Django models use MySQL functions?

    Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

    Flexible pagination in Django

    I d like to implement pagination such that I can allow the user to choose the number of records per page such as 10, 25, 50 etc. How should I go about this? Is there an app I can add onto my project ...

    is it convenient to urlencode all next parameters? - django

    While writing code, it is pretty common to request a page with an appended "next" query string argument. For instance, in the following template code next points back to the page the user is on: &...

    Pragmatically adding give-aways/freebies to an online store

    Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...