views render通過渲染template的html模板語言渲染頁面給使用者
httpresponse 寫什麼內容頁面顯示什麼內容
json是把字典型別變成字串型別
redirect **路徑
return redirect('/login/') #跳轉到login
#return render(request, 'login.html', ) # 這個key需要傳給html
return render(request,'login.html',locals()) #如果沒有locals訪問會沒有顯示,因為template拿不到資料。locals是把資料交給template。相當於上面的字典。
#return httpresponse('hello demo')admin是django強大功能之一,它能共從資料庫中讀取資料,呈現在頁面中,進行管理。
2018 12 21 函式this的指向
1.解決函式內this指向 1.可以在函式外提前宣告變數 this that this 2 二者代表的是將函式內的this換成obj之後然後把fn呼叫 3.bind修改函式內的this fn.bind obj,a,b 只是替換了this但是不呼叫fn,返回的還是函式 為什麼用了call之後裡面的na...
View學習筆記 View座標
一般的資料座標系 view的座標系。view的座標系是重右下角開始的x向左值越大,y向下越大。gettop view左上角與父view頂部的距離。getleft view左上角與父view左側的距離。getbuttom view右下角與父view頂部的距離 getright view右下角與父vie...
自定義view移動整個view
時間比較短,直接上 了 import android.animation.objectanimator import android.content.context import android.graphics.pointf import android.util.attributeset imp...