實際上就是多了乙個隱藏的span標籤,內容是+1,配合setinterval實現的動態效果
settings.py
...]staticfiles_dirs = (os.path.join(base_dir, "statics"),) # 現新增的配置,這裡是元組,注意逗號
templates = [
...'dirs': [os.path.join(base_dir, 'templates')],
]urls.py
from django.contrib import adminviews.pyfrom django.urls import path
from django.conf.urls import url, include
urlpatterns = [
# 點讚效果實現
url(r'^zan.html', views.zan),
]
from django.shortcuts import render, redirectviews.py# 點讚效果實現
def zan(request):
return render(request, 'zan.html')
from django.shortcuts import render, redirecttemplates/zan.html# 點讚效果實現
def zan(request):
return render(request, 'zan.html')
贊 +1頁面顯示;贊
python總結 python學習框架梳理
目錄基礎 注釋與變數名等基本規則 關鍵字操作符 數字 流程控制 序列 文字序列 字串 二進位制序列 位元組 列表 元組 對映 字典 集合 函式物件導向程式設計 錯誤和異常 模組 資料結構與演算法 陣列 字串 鍊錶 二分查詢 排序 棧 佇列 堆對映 集合 字典 並查集二叉樹 樹 圖 遞迴 回溯 貪心 ...
python學習 scrapy爬蟲框架學習
scrapy學習,可以參考 scrapy1.5中文文件,1 建立專案 指定資料夾目錄建立專案,cmd進入資料夾路徑,使用命令 scrapy startproject 專案名 建立成功後的專案目錄結構 2 編寫第乙個蜘蛛,參考 140.html import scrapy class mingyan ...
Python學習 python效能分析
python profiler效能分析 一種方法 if name main import profile profile.run foo 另一種命令列方法 python m profile prof1.py profile的統計結果分為ncalls,tottime,percall,cumtime,p...