91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django云端留言板如何實現

發布時間:2021-07-16 13:54:23 來源:億速云 閱讀:132 作者:小新 欄目:開發技術

這篇文章主要介紹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云端留言板如何實現”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

原平市| 福贡县| 岢岚县| 当阳市| 广水市| 广平县| 成安县| 昭通市| 高平市| 从化市| 新巴尔虎右旗| 石柱| 和平县| 星座| 镇赉县| 娄烦县| 招远市| 隆昌县| 绥德县| 白河县| 平利县| 蓬安县| 岳阳市| 常山县| 巴林左旗| 鹰潭市| 全南县| 大石桥市| 鸡西市| 承德县| 沙坪坝区| 浮梁县| 定州市| 梁平县| 正定县| 德昌县| 丹阳市| 沅江市| 迁西县| 义乌市| 上蔡县|