python - django中render和redirect有什么区别?
PHPz
PHPz 2017-04-18 10:02:28
0
2
838
PHPz
PHPz

学习是最好的投资!

reply all(2)
PHPzhong

render is to render variables into the template, and redirect is a jump function in HTTP, which generally generates a 302 status code

黄舟

render_to_response('current_datetime.html', {'current_date': now})//The first parameter is the template page, the second parameter is the variable
return HttpResponseRedirect("your url")//Jump directly to the specified url

This is the difference

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!