1. 程式人生 > >使用rander() 將後臺的資料傳遞到前臺介面顯示出來

使用rander() 將後臺的資料傳遞到前臺介面顯示出來

1、建立templates資料夾

2、在該資料夾內建立html介面a.html

3.views.py:

  def a(request):

    love='iloveyou'
    return render(request,'a.html',{'aaa':love})

4.a.html

  <!DOCTYPE html>
    <html>
    <head>
    <title></title>
    </head>
    <body>
      <center>
        <h1>{{ aaa }}</h1>
      </center>
    </body>
    </html>

5、setting.py配置只需配置一次即可

  TEMPLATES = ['DIRS': [os.path.join(BASE_DIR, 'templates')],]