您好,登錄后才能下訂單哦!
1.視圖返回HTTP內容
#直接返回文字內容
return HttpResponse('Hello Word! You\'re at the polls index')
#使用模版返回內容
template = loader.get_template('polls/index.html')
return HttpResponse(template.render(context,request))
#簡化的使用模版返回內容
return render(request,'polls/index.html',context)
2.urls.py文件配置內容
#?P<question_id>表示將捕獲的值賦一個變量名,可以直接通過變量名引用他,而不用管位置
url(r'^(?P<question_id>[0-9]+)/results/$',views.results,name='results'),
3.使用mysql數據庫時出現的問題
#需要將django/db/backends/mysql/base.py里的
DateTimeField(6)改為DateTimeField
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。