Django form: what is the best way to modify posted data before validating?

前端 未结 2 2172
栀梦
栀梦 2021-02-19 18:15
form = ContactForm(request.POST)

# how to change form fields\' values here?

if form.is_valid():
    message = form.cleaned_data[\'message\']

Is there

2条回答
  •  你的背包
    2021-02-19 18:27

    You should make request.POST(instance of QueryDict) mutable by calling copy on it and then change values:

    post = request.POST.copy() # to make it mutable
    post['field'] = value
    # or set several values from dict
    post.update({'postvar': 'some_value', 'var': 'value'})
    # or set list
    post.setlist('list_var', ['some_value', 'other_value']))
    
    # and update original POST in the end
    request.POST = post
    

    QueryDict docs - Request and response objects

提交回复
热议问题