Home  >  Q&A  >  body text

python - django中render和redirect有什么区别?

PHPzPHPz2741 days ago848

reply all(2)I'll reply

  • PHPz

    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

    reply
    0
  • 黄舟

    黄舟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

    reply
    0
  • Cancelreply