2019年11月2日 星期六

[ Django ] 影片網站資料庫及後台管理(二) - 視圖和樣版



影片嵌入程式碼是採用iframe的標籤,其主要的參數有width, height, src等。

1.將index.html中重要的參數變數,{{width}}、{{height}}、{{src}}。

2.修改views.py程式

from django.shortcuts import render

# Create your views here.

def home(request):
    width=1280
    height=720
    src = 'W40mDCqWyYo'
    return render(request, 'index.html', locals())

3.啟動網站查看結果

上一篇文章:影片網站資料庫及後台管理(一) - 建立網站專案
下一篇文章:影片網站資料庫及後台管理(三) - 建立資料庫

沒有留言:

張貼留言