您好,登錄后才能下訂單哦!
這篇文章主要介紹django云端留言板如何實現,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1.創建應用
django-admin startproject cloudms cd cloudms python manage.py startapp msgapp
2.創建模板文件
在cloudms\msgapp\下創建templates文件夾,在templates文件夾下創建MsgSingleWeb.html(這里在pycharm中可以直接選擇new一個HTML file,會自動生成html,head,body等標簽)內容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>云端留言板(1)首頁</title> </head> <body> <h2>提交留言功能區</h2> <form action="/msggate/" method="post"> {% csrf_token %} 發送方 <input type="text" name="userA" /><br> 接收方 <input type="text" name="userB" /><br> 消息文 <input type="text" name="msg" /><br> <input type="submit" value="留言提交"/> </form> <h2>獲取留言功能區</h2> <form action="/msggate/" method="get"> 接收方 <input type="text" name="userC" /><br> <input type="submit" value="留言獲取"> </form> <table border="1"> <thead> <th>留言時間</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.設定url路由
本地路由。cloudms\msgapp\新建urls.py,內容如下
from django.urls import path from . import views urlpatterns=[ path('',views.msgproc), ]
全局路由引入本地路由,cloudms\cloudms\urls.py內容如下
from django.contrib import admin from django.urls import path,include urlpatterns = [ path("msggate/",include('msgapp.urls')), path('admin/', admin.site.urls), ]
5.編寫views的交互函數
cloudms\msgapp\views.py內容如下
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函數第三個參數是字典類型,表明向html頁面中特定變量賦值
以上是“django云端留言板如何實現”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。