Django: Save cleaned_data in a session effectively

2019-07-03 16:21发布

In one of my forms, I am processing the form data and save it in a session variable.

So when I run

if locationForm.is_valid():

I execute

request.session['streetNumber'] = locationForm.cleaned_data['streetNumber']
request.session['postalCode'] = locationForm.cleaned_data['postalCode']
request.session['state'] = locationForm.cleaned_data['state']
request.session['country'] = locationForm.cleaned_data['country']

But this seems very inefficient. I have tried

request.session = locationForm.cleaned_data

but it does not seem to work.

  • Is there any better way of storing all cleaned_data information in a session variable?
  • Are there security concerns I should be aware off?

1条回答
冷血范
2楼-- · 2019-07-03 17:25

what about

for k, v in locationform.cleaned_data.iteritems():
  session[ k ] = v
查看更多
登录 后发表回答