您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)怎樣從零開始串聯(lián)Python前后端技術(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
運維開發(fā)流程概述
是我們參與到其中的一個入口,我們需要了解運維開發(fā)的一些環(huán)節(jié),還有運維開發(fā)的一些技術(shù)基礎(chǔ)。我們通過一個實例來做演示,基本的需求就是從數(shù)據(jù)庫中查取數(shù)據(jù),通過前端頁面展現(xiàn)出來。
(一)業(yè)務(wù)需求
顯示人員信息和部門
使用Django框架來流轉(zhuǎn)數(shù)據(jù)
數(shù)據(jù)存儲在MySQL中
在前端頁面可以查看數(shù)據(jù)
快速迭代開發(fā)
(二)環(huán)境構(gòu)建
1)創(chuàng)建項目
django-admin startproject emp_test
2)啟動Python內(nèi)置web服務(wù)
其中192.168.56.102為主機IP,根據(jù)需要修改即可。
python manage.py runserver 192.168.56.102:9001
錯誤1:A server error occurred. Please contact the administrator.
解決方法: 修改settings.py文件
ALLOWED_HOSTS = ['*']
3)創(chuàng)建應(yīng)用
假設(shè)應(yīng)用名為emp_test,應(yīng)用是項目的一部分,或者是一個模塊
django-admin startapp emp_test
需要將應(yīng)用配置到項目中生效,配置settings.py文件
添加如下的應(yīng)用:
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
‘emp_test’,
)
(三)構(gòu)建Django Admin Site
為了快速構(gòu)建出一個應(yīng)用界面,我們可以嘗試使用Django Admin Site
首先需要做ORM映射,因為Admin模塊會在數(shù)據(jù)庫中持久化一些數(shù)據(jù),需要以表的形式,這個是Django內(nèi)置的功能,需要做對象關(guān)系映射,假設(shè)我們使用默認的sqlite,則需要創(chuàng)建數(shù)據(jù)庫表到數(shù)據(jù)庫中。
查看是否有數(shù)據(jù)庫變化,因為這里是內(nèi)置的功能,所以不需要我們創(chuàng)建任何的模型。
[root@dev01 demo_test]# python manage.py makemigrations
No changes detected
生成數(shù)據(jù)庫的表到數(shù)據(jù)庫(sqlite),從日志可以看到創(chuàng)建了多個表
[root@dev01 demo_test]# python manage.py migrate
Operations to perform:
Synchronize unmigrated apps: staticfiles, messages
Apply all migrations: admin, contenttypes, auth, sessions
Synchronizing apps without migrations:
Creating tables...
Running deferred SQL...
Installing custom SQL...
Running migrations:
Rendering model states... DONE
Applying contenttypes.0001_initial... OK
Applying auth.0001_initial... OK
Applying admin.0001_initial... OK
Applying contenttypes.0002_remove_content_type_name... OK
Applying auth.0002_alter_permission_name_max_length... OK
Applying auth.0003_alter_user_email_max_length... OK
Applying auth.0004_alter_user_username_opts... OK
Applying auth.0005_alter_user_last_login_null... OK
Applying auth.0006_require_contenttypes_0002... OK
Applying sessions.0001_initial... OK
Sqlite文件在項目的根目錄下:
[root@dev01 demo_test]# ll
total 48
-rw-r--r-- 1 root root 36864 Apr 8 15:44 db.sqlite3
drwxr-xr-x 2 root root 4096 Apr 8 15:42 demo_test
drwxr-xr-x 3 root root 4096 Apr 8 15:42 emp_test
-rwxr-xr-x 1 root root 252 Apr 8 15:37 manage.py
構(gòu)建Admin模塊,需要輸入用戶名,密碼和郵箱:
[root@dev01 demo_test]# python manage.py createsuperuser
Username (leave blank to use 'root'): admin
Email address: admin@mail.jj.cn
Password:
Password (again):
Superuser created successfully.
瀏覽器中輸入URL:
http://192.168.56.102:9001/admin
即可訪問Admin Site
要實現(xiàn)自定義的前端頁面,滿足復(fù)雜的需求,我們就需要自定義的方式來做。
(四)自定義前后端技術(shù)實現(xiàn)
整個流程會按照構(gòu)建模型,配置URL,配置VIEW,配置前端頁面幾個步驟來說。
1)構(gòu)建模型
我們的需求就是查看員工的基本信息,我們就計劃創(chuàng)建一個表emp,含有兩個字段,在emp_test目錄下的models.py里面新增如下的內(nèi)容:
從代碼可以看出來,字段empno是自增序列,ename是員工名字,是字符型,長度是50
class emp(models.Model):
empno = models.AutoField(primary_key=True,verbose_name='emp ID')
ename = models.CharField(max_length=50,verbose_name='emp name')
持久化model到數(shù)據(jù)庫
[root@dev01 demo_test]# python manage.py makemigrations
Migrations for 'emp_test':
0001_initial.py:
- Create model emp
[root@dev01 demo_test]# python manage.py sqlmigrate emp_test 0001
BEGIN;
CREATE TABLE "emp_test_emp" ("empno" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "ename" varchar(50) NOT NULL);
COMMIT;
[root@dev01 demo_test]#
[root@dev01 demo_test]#
[root@dev01 demo_test]# python manage.py migrate
Operations to perform:
Synchronize unmigrated apps: staticfiles, messages
Apply all migrations: admin, emp_test, contenttypes, auth, sessions
Synchronizing apps without migrations:
Creating tables...
Running deferred SQL...
Installing custom SQL...
Running migrations:
Rendering model states... DONE
Applying emp_test.0001_initial... OK
2)配置URL
URL是訪問頁面的入口,假設(shè)我們要訪問的URL為:
http://192.168.56.102:9001/emplist
配置URL文件urls.py,在項目文件demo_test/urls.py中修改,其中emplist來自于view層的emplist函數(shù)
from emp_test.views import emplist
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^emplist/',emplist),
]
3)配置view層邏輯
from django.shortcuts import render_to_response, HttpResponseRedirect
from emp_test.models import emp
from django.template import RequestContext
def emplist(request):
return render_to_response('emplist.html',context_instance=RequestContext(request))
4)配置前端頁面
根據(jù)view層的流轉(zhuǎn),需要配置前端頁面emplist.html來展現(xiàn)數(shù)據(jù)。
在應(yīng)用emp_test目錄下創(chuàng)建文件夾 templates
mkdir -p templates
cd templates
寫入文件內(nèi)容為:
hello team
如果頁面中能夠正常顯示,證明整個路程是暢通的,然后我們在這個基礎(chǔ)上持續(xù)改進。
5)配置數(shù)據(jù)訪問
在此基礎(chǔ)上,我們的數(shù)據(jù)來從數(shù)據(jù)庫中查取,這里會用到ORM的內(nèi)容
我們?nèi)绻麤]有任何ORM的基礎(chǔ),可以先熟悉一下,我們通過Django API的方式來創(chuàng)建一些數(shù)據(jù)。
命令行的方式連接到sqlite
[root@dev01 demo_test]# python manage.py shell
Python 2.7.14 (default, Dec 12 2017, 14:17:04)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
引入需要操作的model,這里就是emp,我們在models.py里面創(chuàng)建過的。
>>> from emp_test.models import emp
查看emp的所有數(shù)據(jù)庫,數(shù)據(jù)的操作都是類似的API形式,目前數(shù)據(jù)結(jié)果集為空。
>>> emp.objects.all()
[]
我們來創(chuàng)建幾條記錄,可以使用create方式來創(chuàng)建
>>> emp.objects.create(ename='jeanron');
<emp: emp object>
再次查看就有數(shù)據(jù)了。
>>> emp.objects.all()
[<emp: emp object>]
如果想看到細節(jié)一些的信息,可以指定輸出列,比如這里是ename
>>> emp.objects.all().values('ename')
[{'ename': u'jeanron'}]
>>> emp.objects.create(ename='wusb');
<emp: emp object>
再插入幾條數(shù)據(jù)。
>>> emp.objects.create(ename='macc');
<emp: emp object>
>>> emp.objects.all().values('ename')
[{'ename': u'jeanron'}, {'ename': u'wusb'}, {'ename': u'macc'}]
>>> emp.objects.filter(ename='wusb');
[<emp: emp object>]
如果要做過濾查詢,可以使用filter,比如指定ename=’wusb’的記錄,輸出列為empno
>>> emp.objects.filter(ename='wusb').values('empno')
[{'empno': 2}]
退出
>>> exit()
所以要加入ORM層的數(shù)據(jù)查取邏輯,我們需要在view層中來做。
views.py的內(nèi)容我們稍作修改,指定結(jié)果集為emp_data,可以把結(jié)果集傳入response對象返回。
from django.shortcuts import render_to_response, HttpResponseRedirect
from emp_test.models import emp
from django.template import RequestContext
def emplist(request):
emp_data = emp.objects.all()
return render_to_response('emplist.html',{“emp_data”:emp_data},context_instance=RequestContext(request))
6)優(yōu)化前端頁面
然后我們修改下前端頁面,把返回的數(shù)據(jù)展現(xiàn)出來。
emplist.html的內(nèi)容如下:
hello team
{{emp_data}}
<table border="1">
{% for tmp_data in emp_data %}
<tr>
<td>{{ tmp_data.empno }} </td>
<td>{{ tmp_data.ename }} </td>
{% endfor %}
</tr>
</table>
瀏覽器訪問URL,得到的結(jié)果為:
前端頁面中,對于后端返回的數(shù)據(jù),可以使用標(biāo)簽來實現(xiàn),比如emp_data的數(shù)據(jù)是一個結(jié)果集,我們迭代,可以使用for tmp_data in emp_data的方式來做,和Python的語法是一樣的。里面的每個元素的輸出是使用{{ tmp_data.empno }}這種方式。
(五)補充內(nèi)容:
1).修改數(shù)據(jù)源為MySQL
數(shù)據(jù)庫默認是sqlite,無需修改任何配置,如果使用MySQL可以配置settings.py文件,修改以下的配置
數(shù)據(jù)庫環(huán)境使用 MySQL
DATABASES = {
'default': {
'ENGINE':'django.db.backends.mysql',
'NAME':'kmp',
'USER':'test_django',
'PASSWORD':'xxxx',
'PORT':3306,
'HOST':'127.0.0.1'
}
}
2) 配置有的model到Admin Site
配置emp_test下的文件admin.py
from emp_test.models import emp
class category_emp(admin.ModelAdmin):
fields = ['empno', 'ename']
list_display = ('empno',
'ename')
list_filter = ['empno']
admin.site.register(emp, category_emp)
看完上述內(nèi)容,你們對怎樣從零開始串聯(lián)Python前后端技術(shù)有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。