How to pass information using an HTTP redirect (in Django)

后端 未结 11 879
北恋
北恋 2021-02-01 19:22

I have a view that accepts a form submission and updates a model.

After updating the model, I want to redirect to another page, and I want a message such as \"Field X su

11条回答
  •  鱼传尺愫
    2021-02-01 20:02

    I think this code should work for you

    request.user.message_set.create(message="This is some message")
    return http.HttpResponseRedirect('/url')
    

提交回复
热议问题