suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

PHPzPHPz2803 Tage vor891

Antworte allen(2)Ich werde antworten

  • PHPz

    PHPz2017-04-18 10:04:28

    render是渲染变量到模板中,而redirect是HTTP中的1个跳转的函数,一般会生成302状态码

    Antwort
    0
  • 黄舟

    黄舟2017-04-18 10:04:28

    render_to_response('current_datetime.html', {'current_date': now})//第一个参数是模板页面,第二个参数是变量
    return HttpResponseRedirect("your url")//直接跳转到指定url

    这就是区别

    Antwort
    0
  • StornierenAntwort