Python CGI 实战四:PyMySQL登录注册+留言板

  • 是最后的demo,要对CGI告一段落啦
  • 写了一个比较完整的,包括前后端的,用户登录注册-写留言-查看留言板的过程

最终效果

  • 需要编写美化后的登录界面new_login.html、注册界面new_register.html和发布留言界面message.html,以及一些用来美化css、js等


    image.png
  • 需要编写四个cgi脚本:验证用户登录注册的new_login_sql.py和new_register_sql.py,对用户输入留言时进行数据库增删改查的message_sql.py,以及展示留言板数据库中保存的留言的messagelist_sql.py


    image.png
  • 登录界面:


    image.png
  • 注册界面:


    image.png
  • 发布留言界面:


    image.png
  • 留言版列表界面:


    image.png

第一步:建数据库!

  • 建了一个articles库,内容如下:


    image.png
  • ok!建完库开始代码

第二步:编写美化的前端界面

  • 包括①登录界面new_login.html、②注册界面new_register.html和③发布留言界面message.html,以及若干css、js等,界面美化大同小异,代码太长啦,所以就只放核心html代码吧:

01 登录界面new_login.html

                <form action="http://localhost/cgi-bin/new_login_sql.py" method="post" class="form">
                    <div class="content">
                        <div class="input-group form-group-no-border input-lg">
                                <span class="input-group-addon">
                                    <i class="now-ui-icons users_circle-08"></i>
                                </span>
                            <input type="text" class="form-control" name="uname" placeholder="请输入用户名...">
                        </div>
                        <div class="input-group form-group-no-border input-lg">
                                <span class="input-group-addon">
                                    <i class="now-ui-icons text_caps-small"></i>
                                </span>
                            <input type="password" name="upass" placeholder="请输入密码..." class="form-control"/>
                        </div>
                    </div>
                    <div class="footer text-center">
                        <input class="btn btn-primary btn-round btn-lg btn-block" type="submit" value="登录">
                    </div>
                </form>

                <div class="pull-left">
                    <h6>
                        <a href="#" class="link">需要帮助?</a>
                    </h6>
                </div>
                <div class="pull-right">
                    <h6>
                        <a href="new_register.html" class="link">注册账号</a>
                    </h6>
                </div>

02 注册界面new_register.html

                <form action="http://localhost/cgi-bin/new_register_sql.py" method="post" class="form">
                    <div class="content">
                        <div class="input-group form-group-no-border input-lg">
                                <span class="input-group-addon">
                                    <i class="now-ui-icons users_circle-08"></i>
                                </span>
                            <input type="text" class="form-control" name="rname" placeholder="请输入用户名...">
                        </div>
                        <div class="input-group form-group-no-border input-lg">
                                <span class="input-group-addon">
                                    <i class="now-ui-icons text_caps-small"></i>
                                </span>
                            <input type="password" name="rpass" placeholder="请输入密码..." class="form-control"/>
                        </div>
                    </div>
                    <div class="footer text-center">
                        <input class="btn btn-primary btn-round btn-lg btn-block" type="submit" value="注册">
                    </div>
                </form>

                <div class="pull-left">
                    <h6>
                        <a href="#" class="link">需要帮助?</a>
                    </h6>
                </div>
                <div class="pull-right">
                    <h6>
                        <a href="new_login.html" class="link">已有账号</a>
                    </h6>
                </div>

03 发布留言界面message.html

                <form action="http://localhost/cgi-bin/message_sql.py" method="post" target="_blank" class="form">
                    <div class="content">
                        <div class="input-group form-group-no-border input-lg">
                    <textarea class="form-control" name="textcontent" cols="40" rows="4" placeholder="请输入留言" maxlength="20" style="height:180px;border-radius:4px;"></textarea>
                        </div>
                    </div>
                    <div class="footer text-center">
                        <input class="btn btn-primary btn-round btn-lg btn-block" type="submit" value="发布留言">
                    </div>
                </form>
                <div class="pull-center">
                    <h6>
                        <a href="http://localhost/cgi-bin/messagelist_sql.py" class="link">️✨查看留言板✨</a>
                    </h6>
                </div>

第三步:编写cgi脚本

  • 这才是重中之重呀,需要编写如下四个cgi脚本:①验证用户登录注册的new_login_sql.py和②new_register_sql.py,③对用户输入留言时进行数据库增删改查的message_sql.py,④以及展示留言板数据库中保存的留言的messagelist_sql.py

01 验证用户登录的new_login_sql.py

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# CGI处理模块
import cgi
# 我的电脑由于种种不可知原因,即便给电脑中存在每个版本的python都import了pymysql,运行起来cgi还是会报错无pymysql,最后只好使用引用绝对路径的方式引入pymysql
# 见仁见智,如果直接import pymysql成功则不需引入sys这两句
import sys
sys.path.append("/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages")
import pymysql

# 创建 FieldStorage 的实例化
form = cgi.FieldStorage()
#获取前端用户输入的数据
uname = form.getvalue("uname")
upass = form.getvalue("upass")

#连接数据库
#这里的user,password,db都是各有不同的蛤,需要修改你自己的库信息
con = pymysql.connect(host='localhost', user='root', password='cyj123', db='pydemo', charset='utf8mb4',
                      cursorclass=pymysql.cursors.DictCursor)

try:
    with con.cursor() as cursor:
        #查找
        sql = "select password from users where email = %s"
        cursor.execute(sql, str(uname))
        con.commit()
        result = cursor.fetchone()

        print("Content-type:text/html")
        print('')
        print('<html>')
        print('<head>')
        print('<meta charset="utf-8">')

        #判断账户密码是否正确
        if result == None or upass != result["password"]:
            print('<meta http-equiv="Refresh" content="1;url=/new_login/new_login.html">')
            print('<title>登录</title>')
            print('</head>')
            print('<body>')
            print('<h>用户名或密码错误!正在跳转至重新登录界面...</h>')
        else:
            print('<meta http-equiv="Refresh" content="1;url=/new_login/message.html">')
            print('<title>登录</title>')
            print('</head>')
            print('<body>')
            print('<h>登录成功!正在跳转至留言页...<h>')

        print('</body>')
        print('</html>')

finally:
    con.close()

02 验证用户注册的new_register_sql.py

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# CGI处理模块
import cgi
# 我的电脑由于种种不可知原因,即便给电脑中存在每个版本的python都import了pymysql,运行起来cgi还是会报错无pymysql,最后只好使用引用绝对路径的方式引入pymysql
# 见仁见智,如果直接import pymysql成功则不需引入sys这两句
import sys
sys.path.append("/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages")
import pymysql

# 创建 FieldStorage 的实例化
form = cgi.FieldStorage()
#获取前端用户输入的数据
rname = form.getvalue("rname")
rpass = form.getvalue("rpass")

#连接数据库
#这里的user,password,db都是各有不同的蛤,需要修改你自己的库信息
con = pymysql.connect(host='localhost', user='root', password='cyj123', db='pydemo', charset='utf8mb4',
                      cursorclass=pymysql.cursors.DictCursor)
#判断是否输入空信息
if rname == None or rpass == None:
    print("Content-type:text/html")
    print('')
    print('<html>')
    print('<head>')
    print('<meta charset="utf-8">')
    print('<meta http-equiv="Refresh" content="3;url=/new_register/new_register.html">')
    print('<title>注册</title>')
    print('</head>')
    print('<body>')
    print('<h>用户名或密码不得为空!正在跳转至重新注册页面...<h>')
    print('</body>')
    print('</html>')
else:
    try:
        with con.cursor() as cursor:
            #先查询是否已有相同账户
            sql = "select * from users where email = %s"
            cursor.execute(sql, str(rname))
            con.commit()
            result = cursor.fetchone()

            print("Content-type:text/html")
            print('')
            print('<html>')
            print('<head>')
            print('<meta charset="utf-8">')
            #再添加
            if result == None:
                sql = "insert into users (email,password) values (%s,%s)"
                cursor.execute(sql, (str(rname), str(rpass)))
                con.commit()
                print('<meta http-equiv="Refresh" content="1;url=/new_login/new_login.html">')
                print('<title>注册</title>')
                print('</head>')
                print('<body>')
                print('<h>注册成功,正在跳转至登录页面...</h>')
            else:
                print('<meta http-equiv="Refresh" content="1;url=/new_login/new_register.html">')
                print('<title>注册</title>')
                print('</head>')
                print('<body>')
                print('<h>此账号已存在!正在跳转至重新注册页面...<h>')

            print('</body>')
            print('</html>')

    finally:
        con.close()

03 对用户输入留言时进行数据库增删改查的message_sql.py

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# CGI处理模块
import cgi, cgitb
import datetime
# 我的电脑由于种种不可知原因,即便给电脑中存在每个版本的python都import了pymysql,运行起来cgi还是会报错无pymysql,最后只好使用引用绝对路径的方式引入pymysql
# 见仁见智,如果直接import pymysql成功则不需引入sys这两句
import sys
sys.path.append("/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages")
import pymysql

# 创建 FieldStorage 的实例化
form = cgi.FieldStorage()

# 接收字段数据
if form.getvalue('textcontent'):
   text_content = form.getvalue('textcontent')
else:
   text_content = "没有内容"

#连接数据库
#这里的user,password,db都是各有不同的蛤,需要修改你自己的库信息
con = pymysql.connect(host='localhost', user='root', password='cyj123', db='pydemo', charset='utf8mb4',
                      cursorclass=pymysql.cursors.DictCursor)

print("Content-type:text/html")
print('')
print('<html>')
print('<head>')
print('<meta charset="utf-8">')

try:
   with con.cursor() as cursor:
      # 写
      sql = "insert into articles (content,time) values (%s,%s)"
      now = datetime.datetime.now()
      now = now.strftime("%Y-%m-%d %H:%M:%S")
      cursor.execute(sql, (str(text_content),now))
      con.commit()
      print('<meta http-equiv="Refresh" content="3;url= messagelist_sql.py">')
      print('<title>留言板</title>')
      print('</head>')
      print('<body>')
      print('发布成功,正在跳转至留言板...')

finally:
   con.close()

print('</body>')
print('</html>')

04 展示留言板数据库中保存的留言的messagelist_sql.py

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# CGI处理模块
import cgi, cgitb
import datetime
import sys
sys.path.append("/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages")
import pymysql
reload(sys)
#重新设置字符集
sys.setdefaultencoding("utf-8")

#连接数据库
#这里的user,password,db都是各有不同的蛤,需要修改你自己的库信息
con = pymysql.connect(host='localhost', user='root', password='cyj123', db='pydemo', charset='utf8mb4',
                      cursorclass=pymysql.cursors.DictCursor)

print("Content-type:text/html")
print('')
print('<html>')
print('<head>')
print('<meta charset="utf-8">')
print('<title>Message List</title>')
print('<link href="/new_login/assets/css/bootstrap.min.css" rel="stylesheet"/>')
print('<link href="/new_login/assets/css/now-ui-kit.css" rel="stylesheet"/>')
print('</head>')
print('<body class="login-page sidebar-collapse">')
print('<div class="page-header" filter-color="orange">')
print('<div class="page-header-image">')
print('<img src="/new_login/assets/img/bg11.jpg">')
print('</div>')
print('<div style="width: 100%;height: 600px;position: relative;">')
print('<h3 style="text-align:center;padding-top:80px">留言板</h3>')
print('<div style="width: 30%;height: 300px;position: absolute;top: 0;right: 0;bottom: 0;left: 0;margin: auto;overflow: scroll;">')
print('<div style="height="100px";">')
try:
   with con.cursor() as cursor:
      # 读
      sql = "select content,time from articles"
      cursor.execute(sql)
      result = cursor.fetchall()
      for i in result:
         print('<div style="padding-top:10px;padding-left:10px;padding-right:10px;height:75px;background-color: green;background-color:rgba(250,250,250,0.1);border-radius:4px">')
         print('%s'%i['content'])
         print('<div style="float:right">')
         print('<br/>')
         print('%s'%i['time'])
         print('</div>')
         print('</div>')
         print('<br/>')
finally:
   con.close()

print('</div>')

print('</div>')
print('<h1 style="text-align:center;margin-top:350px"><a href="/new_login/message.html" class="link" style="font-size: 14px">✏️️发布留言✏️️</a></h1>')
print('</div>')
print('</div>')
print('</div>')
print('</body>')
print('</html>')

结束啦!完结撒花!✿✿ヽ(°▽°)ノ✿

  • 可以看到数据库中存入了数据


    image.png
image.png
  • 结束!
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,406评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,976评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,302评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,366评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,372评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,457评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,872评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,521评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,717评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,523评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,590评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,299评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,859评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,883评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,127评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,760评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,290评论 2 342