真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能-創(chuàng)新互聯(lián)

小編給大家分享一下Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

在開平等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì) 網(wǎng)站設(shè)計(jì)制作按需求定制制作,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,全網(wǎng)營(yíng)銷推廣,成都外貿(mào)網(wǎng)站制作,開平網(wǎng)站建設(shè)費(fèi)用合理。

python的數(shù)據(jù)類型有哪些?

python的數(shù)據(jù)類型:1. 數(shù)字類型,包括int(整型)、long(長(zhǎng)整型)和float(浮點(diǎn)型)。2.字符串,分別是str類型和unicode類型。3.布爾型,Python布爾類型也是用于邏輯運(yùn)算,有兩個(gè)值:True(真)和False(假)。4.列表,列表是Python中使用最頻繁的數(shù)據(jù)類型,集合中可以放任何數(shù)據(jù)類型。5. 元組,元組用”()”標(biāo)識(shí),內(nèi)部元素用逗號(hào)隔開。6. 字典,字典是一種鍵值對(duì)的集合。7. 集合,集合是一個(gè)無(wú)序的、不重復(fù)的數(shù)據(jù)組合。

項(xiàng)目創(chuàng)建略,可參考Python Django Vue 項(xiàng)目創(chuàng)建。

目錄結(jié)構(gòu)如下

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能

編輯views.py

from django.shortcuts import render

# Create your views here.

from django.http import HttpResponse
from django.shortcuts import render
from common.DBHandle import DataBaseHandle
import time

def djangoHello(request):

 return HttpResponse('Hello Django!')

def index(request):

 return render(request,'index.html')

def login(request):
 print('login_func')

 usn = request.POST['username']
 pwd = request.POST['password']
 host = '127.0.0.1'
 username = 'username'
 password = 'password'
 database = 'dbname'
 port = 3306
 # 實(shí)例化 數(shù)據(jù)庫(kù) 連接
 DbHandle = DataBaseHandle(host, username, password, database, port)
 localTime = time.localtime(time.time())
 create_time = time.strftime("%Y-%m-%d %H:%M:%S", localTime)
 sql = "insert into user(username,password,create_time) values ('%s','%s','%s')" % (usn, pwd, create_time)
 DbHandle.insertDB(sql)
 DbHandle.closeDb()


 return render(request,'login.html')

接下來(lái)編輯urls.py

"""FirstWeb URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
 https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
 1. Add an import: from my_app import views
 2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
 1. Add an import: from other_app.views import Home
 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
 1. Import the include() function: from django.urls import include, path
 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from fistWeb import views

urlpatterns = [
 path('admin/', admin.site.urls),
 path('hello/',views.djangoHello),
 path('index/',views.index),
 path('login/',views.login),
]

在應(yīng)用下創(chuàng)建templates 文件夾

并創(chuàng)建html文件 index.html





FirstWeb


 

信息注冊(cè)

      {% csrf_token %}  用戶名:
 密 碼:
   

login.html




 
 FirstWeb-登錄


您好,您已注冊(cè)成功!

介紹一下添加的common文件

添加一個(gè)數(shù)據(jù)庫(kù)封裝的類。

# FileName : DBHandle.py
# Author : Adil
# DateTime : 2018/11/29 2:03 PM
# SoftWare : PyCharm
import pymysql
# username : adil
# password : helloyyj
class DataBaseHandle(object):
 ''' 定義一個(gè) MySQL 操作類'''
 def __init__(self,host,username,password,database,port):
 '''初始化數(shù)據(jù)庫(kù)信息并創(chuàng)建數(shù)據(jù)庫(kù)連接'''
 # 下面的賦值其實(shí)可以省略,connect 時(shí) 直接使用形參即可
 self.host = host
 self.username = username
 self.password = password
 self.database = database
 self.port = port
 self.db = pymysql.connect(self.host,self.username,self.password,self.database,self.port,charset='utf8')
 # 這里 注釋連接的方法,是為了 實(shí)例化對(duì)象時(shí),就創(chuàng)建連接。不許要單獨(dú)處理連接了。
 #
 # def connDataBase(self):
 # ''' 數(shù)據(jù)庫(kù)連接 '''
 #
 # self.db = pymysql.connect(self.host,self.username,self.password,self.port,self.database)
 #
 # # self.cursor = self.db.cursor()
 #
 # return self.db
 def insertDB(self,sql):
 ''' 插入數(shù)據(jù)庫(kù)操作 '''
 self.cursor = self.db.cursor()
 try:
  # 執(zhí)行sql
  self.cursor.execute(sql)
  # tt = self.cursor.execute(sql) # 返回 插入數(shù)據(jù) 條數(shù) 可以根據(jù) 返回值 判定處理結(jié)果
  # print(tt)
  self.db.commit()
  print('執(zhí)行成功')
 except:
  # 發(fā)生錯(cuò)誤時(shí)回滾
  self.db.rollback()
  print('執(zhí)行失敗')
 finally:
  self.cursor.close()
 def deleteDB(self,sql):
 ''' 操作數(shù)據(jù)庫(kù)數(shù)據(jù)刪除 '''
 self.cursor = self.db.cursor()

 try:
  # 執(zhí)行sql
  self.cursor.execute(sql)
  # tt = self.cursor.execute(sql) # 返回 刪除數(shù)據(jù) 條數(shù) 可以根據(jù) 返回值 判定處理結(jié)果
  # print(tt)
  self.db.commit()
 except:
  # 發(fā)生錯(cuò)誤時(shí)回滾
  self.db.rollback()
 finally:
  self.cursor.close()

 def updateDb(self,sql):
 ''' 更新數(shù)據(jù)庫(kù)操作 '''
 self.cursor = self.db.cursor()
 try:
  # 執(zhí)行sql
  self.cursor.execute(sql)
  # tt = self.cursor.execute(sql) # 返回 更新數(shù)據(jù) 條數(shù) 可以根據(jù) 返回值 判定處理結(jié)果
  # print(tt)
  self.db.commit()
 except:
  # 發(fā)生錯(cuò)誤時(shí)回滾
  self.db.rollback()
 finally:
  self.cursor.close()
 def selectDb(self,sql):
 ''' 數(shù)據(jù)庫(kù)查詢 '''
 self.cursor = self.db.cursor()
 try:
  self.cursor.execute(sql) # 返回 查詢數(shù)據(jù) 條數(shù) 可以根據(jù) 返回值 判定處理結(jié)果
  data = self.cursor.fetchall() # 返回所有記錄列表
  print(data)
  # 結(jié)果遍歷
  for row in data:
  sid = row[0]
  name = row[1]
  # 遍歷打印結(jié)果
  print('sid = %s, name = %s'%(sid,name))
 except:
  print('Error: unable to fecth data')
 finally:
  self.cursor.close()
 def closeDb(self):
 ''' 數(shù)據(jù)庫(kù)連接關(guān)閉 '''
 self.db.close()
if __name__ == '__main__':
 DbHandle = DataBaseHandle('127.0.0.1','username','password','dbname',3306)
 sql = "insert into JdwSpider(image_name,image_url,Spider_time) values ('%s','%s','%s')" % (
 '1', '2', '2018-12-04 15:25:21')
 DbHandle.insertDB(sql)
 # DbHandle.insertDB('insert into test(name) values ("%s")'%('FuHongXue'))
 # DbHandle.insertDB('insert into test(name) values ("%s")'%('FuHongXue'))
 # DbHandle.selectDb('select * from test')
 # DbHandle.updateDb('update test set name = "%s" where sid = "%d"' %('YeKai',22))
 # DbHandle.selectDb('select * from test')
 # DbHandle.insertDB('insert into test(name) values ("%s")'%('LiXunHuan'))
 # DbHandle.deleteDB('delete from test where sid > "%d"' %(25))
 # DbHandle.selectDb('select * from test')
 DbHandle.closeDb()

以上代碼實(shí)現(xiàn)了一個(gè)簡(jiǎn)單的注冊(cè)頁(yè)面,并將注冊(cè)信息存放到數(shù)據(jù)庫(kù)表中。

啟動(dòng)項(xiàng)目演示

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能

打開瀏覽器輸入url:http://127.0.0.1:8000/index/

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能

點(diǎn)擊注冊(cè)提交按鈕,頁(yè)面跳轉(zhuǎn)如下

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能

查看數(shù)據(jù)庫(kù)表,可以看到新增的用戶信息。

Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能

以上是“Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


網(wǎng)站題目:Python中Django如何實(shí)現(xiàn)簡(jiǎn)單注冊(cè)功能-創(chuàng)新互聯(lián)
路徑分享:http://weahome.cn/article/joghp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部