学习是最好的投资!
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 variablereturn HttpResponseRedirect("your url")//Jump directly to the specified url
This is the difference
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