註冊介面
主頁設計規範(在index應用中寫**)
路由正則
檢視函式
模板位置說明/
def index_view(request):
templates/index/index.html
主頁
登陸後
雲筆記設計規範
路由正則
檢視函式
模板位置
說明/note/
def list_view(request):
templates/note/list_note.html
顯示筆記列表功能
/note/add
def add_view(request):
templates/note/add_note.html
新增雲筆記
/note/mod/(\d+)
def mod_view(request, id):
templates/note/mod_note.html
修改之前雲筆記
/note/del/(\d+)
def del_view(request, id):
無(返回列表頁)
刪除雲筆記
/note/(\d+)
def show_view(request, id):
templates/note/note.html
檢視單個雲筆記
做個網路的小專案
感覺網路和多執行緒方面的知識太缺乏,準備做個小專案學習一下,專案驅動的乙個比較好的學習方法,最好是乙個能夠 持續改進 而且 有實際用途的 專案是比較好的。想了想可以做乙個ftp windows共享檔案 p2p的搜尋工具。1,內部網有不少ftp server,有對工作學習有幫助的資料 2,內部網有很多...
Django小專案 待辦清單(一)
好久沒有更新了。這次不再是爬蟲,而是django。了解並學習django是由於學校工作室的專案要求,所以對此進行了小半個月的學習並完成了第乙個django專案,待辦清單。一 配置環境。整個專案是在虛擬環境中進行的。所以首先需要建立虛擬環境。1.我們在命令列中輸入pip install virtual...
Django框架學習 初識Django專案
django admin 檢查是否安裝好django環境 django admin startproject name 建立乙個名為name的django專案 python manage.py check 檢查專案的完整性 python manage.py runserver 本地執行django專...