PHPz2017-04-18 10:04:28
render is to render variables into the template, and redirect is a jump function in HTTP, which generally generates a 302 status code
黄舟2017-04-18 10:04:28
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