1. view -> HTML
后臺(tái)傳遞一些數(shù)據(jù)給html扭屁,直接渲染在網(wǎng)頁(yè),該方法可以傳遞各種數(shù)據(jù)類型需曾,包括list够傍,dict等等形娇。
from django.shortcuts import render
def main_page(request):
data = [1,2,3,4]
return render(request, 'index.html', {'data': data})
html使用 {{ }} 來(lái)獲取數(shù)據(jù)
<div>{{ data }}</div>
2. view-> JavaScript
如果數(shù)據(jù)要傳給js用男图,那么按照上文的方式寫(xiě)會(huì)有錯(cuò)誤示姿。
需要注意兩點(diǎn):
- views.py中返回的函數(shù)中的值要用 json.dumps() 處理
- 在網(wǎng)頁(yè)上要加safe 過(guò)濾器。
views.py
# -*- coding: utf-8 -*-
import json
from django.shortcuts import render
def main_page(request):
list = ['1', '2', '3']
return render(request, 'index.html', {
'List': json.dumps(list),
})
JavaScript部分:
var List = {{ List|safe }};
3. JavaScript Ajax 動(dòng)態(tài)刷新頁(yè)面
網(wǎng)頁(yè)前臺(tái)使用Ajax發(fā)送請(qǐng)求逊笆,后臺(tái)處理數(shù)據(jù)后返回?cái)?shù)據(jù)給前臺(tái)栈戳,前臺(tái)不刷新網(wǎng)頁(yè)動(dòng)態(tài)加載數(shù)據(jù)
JS 發(fā)送ajax請(qǐng)求,后臺(tái)處理請(qǐng)求并返回status, result
在 success: 后面定義回調(diào)函數(shù)處理返回的數(shù)據(jù)难裆,需要使用 JSON.parse(data)
Django 代碼:
def scene_update_view(request):
if request.method == "POST":
name = request.POST.get('name')
status = 0
result = "Error!"
return HttpResponse(json.dumps({
"status": status,
"result": result
}))
JS 代碼:
function getSceneId(scece_name, td) {
var post_data = {
"name": scece_name,
};
$.ajax({
url: {% url 'scene_update_url' %},
type: "POST",
data: post_data,
success: function (data) {
data = JSON.parse(data);
if (data["status"] == 1) {
setSceneTd(data["result"], scece_name, td);
} else {
alert(data["result"]);
}
}
});
}
4. HTML->view
URL參數(shù)在view中傳遞
- 1子檀、帶參數(shù)名:通過(guò)named group方式傳遞指定參數(shù),語(yǔ)法為: (?P<name>pattern)乃戈, name 為傳遞參數(shù)的名稱褂痰,pattern代表所要匹配的模式。如下:
url(r'^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$', views.month_archive)
中:year,month為參數(shù)名症虑,而后面緊跟的則代表正則表達(dá)匹配的模式缩歪。
比如某個(gè)具體的URL為:http://0.0.0.0:8081/kingadmin/2017/09/(黃色部分為域名),對(duì)應(yīng)view處理函數(shù)如下:
def month_archive(request,year,month):
print(year谍憔,month)
return render(request,"kingadmin/index.html",locals())
其中:app_name 和 model_name對(duì)應(yīng)url中傳遞過(guò)來(lái)的參數(shù)值year值為:2017匪蝙,month值為9
- 2、不帶參數(shù)名:語(yǔ)法為: (r'pattern1/pattern2/')习贫, pattern代表所要匹配的模式逛球。如下:
url(r'^(\w+)/(\w+)/$', views.table_data_list)
比如某個(gè)具體的URL為:http://0.0.0.0:8081/kingadmin/crm/customer/(黃色部分為域名),對(duì)應(yīng)view處理函數(shù)如下:
def table_data_list(request,app_name,model_name):
admin_obj = base_admin.site.registered_sites[app_name][model_name]
return render(request,"kingadmin/table_data_list.html",locals())
其中:app_name 和 model_name對(duì)應(yīng)url中傳遞過(guò)來(lái)的參數(shù)值app_name值為:crm苫昌,model_name值為customer
- 另外一個(gè)例子:
index.html
在應(yīng)用polls里創(chuàng)建templates文件夾颤绕,再在里面創(chuàng)建polls文件夾,在新建的polls里創(chuàng)建index.html文件祟身,打開(kāi)并編寫(xiě)如下代碼:
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
上面代碼是從views.py里分離出來(lái)的用來(lái)顯示最近問(wèn)題列表的功能屋厘,這里分條顯示。
然后在polls的views里修改代碼如下:
polls/views.py
from django.http import HttpResponse
from django.template import RequestContext,loader
from .models import Question
def index(request):
latest_question_list =Question.objects.order_by('-pub_date')[:5]
template =loader.get_template('polls/index.html')
context = RequestContext(request, {
'latest_question_list': latest_question_list,
})
returnHttpResponse(template.render(context))
這里用loader裝載template:polls/index.html月而,然后再傳遞上下文給template進(jìn)行render汗洒。
注意:Django新版本 path匹配正則時(shí)候無(wú)效,導(dǎo)入re_path即可匹配正則
from django.urls import re_path,path
urlpatterns = [
path('admin/', admin.site.urls),
re_path('edit/(\d+)',views.edit),
]