這篇文章主要介紹django云端留言板如何實(shí)現(xiàn),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
10年積累的做網(wǎng)站、網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計(jì)制作后付款的網(wǎng)站建設(shè)流程,更有平原免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。1.創(chuàng)建應(yīng)用
django-admin startproject cloudms cd cloudms python manage.py startapp msgapp
2.創(chuàng)建模板文件
在cloudms\msgapp\下創(chuàng)建templates文件夾,在templates文件夾下創(chuàng)建MsgSingleWeb.html(這里在pycharm中可以直接選擇new一個(gè)HTML file,會自動(dòng)生成html,head,body等標(biāo)簽)內(nèi)容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>云端留言板(1)首頁</title> </head> <body> <h2>提交留言功能區(qū)</h2> <form action="/msggate/" method="post"> {% csrf_token %} 發(fā)送方 <input type="text" name="userA" /><br> 接收方 <input type="text" name="userB" /><br> 消息文 <input type="text" name="msg" /><br> <input type="submit" value="留言提交"/> </form> <h2>獲取留言功能區(qū)</h2> <form action="/msggate/" method="get"> 接收方 <input type="text" name="userC" /><br> <input type="submit" value="留言獲取"> </form> <table border="1"> <thead> <th>留言時(shí)間</th> <th>留言來源</th> <th>留言信息</th> </thead> <br> <tbody> {% for line in data %} <tr> <td>{{ line.time }}</td> <td align="center">{{ line.userA }}</td> <td>{{ line.msg }}</td> </tr> {% endfor %} </tbody> </table> </body> </html>
3.引入模板文件
在cloudms\settings.py中修改TEMPLATES=[]中的DIRS,如下
'DIRS': [os.path.join(BASE_DIR,"msgapp/templates")],
4.設(shè)定url路由
本地路由。cloudms\msgapp\新建urls.py,內(nèi)容如下
from django.urls import path from . import views urlpatterns=[ path('',views.msgproc), ]
全局路由引入本地路由,cloudms\cloudms\urls.py內(nèi)容如下
from django.contrib import admin from django.urls import path,include urlpatterns = [ path("msggate/",include('msgapp.urls')), path('admin/', admin.site.urls), ]
5.編寫views的交互函數(shù)
cloudms\msgapp\views.py內(nèi)容如下
from django.shortcuts import render from datetime import datetime # Create your views here. def msgproc(request): datalist=[] if(request.method=="POST"): userA=request.POST.get("userA",None) userB=request.POST.get("userB",None) msg=request.POST.get("msg",None) time=datetime.now() with open('msgdata.txt','a+') as f: f.write("{}--{}--{}--{}--\n".format(userB,userA,msg,time.strftime("%Y-%m-%d %H:%M:%S"))) if(request.method=="GET"): userC=request.GET.get("userC",None) if(userc!=None): with open('msgdata.txt','r') as f: cnt=0 for line in f: linedata=line.split('--') if(linedata[0]==userC): d={"userA":linedata[1],"msg":linedata[2],"time":linedata[3]} datalist.append(d) if(cnt>=10): break return render(request,"MsgSingleWeb.html",{"data":datalist}) ##render函數(shù)第三個(gè)參數(shù)是字典類型,表明向html頁面中特定變量賦值
以上是“django云端留言板如何實(shí)現(xiàn)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章名稱:django云端留言板如何實(shí)現(xiàn)-創(chuàng)新互聯(lián)
本文URL:http://muchs.cn/article42/dgciec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、移動(dòng)網(wǎng)站建設(shè)、微信小程序、自適應(yīng)網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容