您好,登录后才能下订单哦!
Python Django数据库添加查询
对数据进行操作
一、创建记录
# pwd
/root/csvt03
# ipython manage.py shell
In [1]: from blog.models import Employee
#(第一种方法)
In [2]: Employee
Out[2]: blog.models.Employee
In [3]: emp = Employee()
In [4]: emp.name = 'Alen'
In [5]: emp.save()
#(第二种方法)
In [6]: emp = Employee(name='Tom')
In [7]: emp.save()
#(第三种方法)
调用管理器create
In [8]: Employee.objects.create(name='Max')
查询数据库已经创建了记录
二、查询记录
# ipython manage.py shell
In [13]: emps = Employee.objects.all()
In [14]: emps
Out[14]: [<Employee: Employee object>, <Employee: Employee object>, <Employee: Employee object>, <Employee: Employee object>]
In [16]: emps[0].id
Out[16]: 1L
In [17]: emps[0].name
Out[17]: u'Alen'
In [18]: emps[1].name
Out[18]: u'Tom'
In [19]: emps[2].name
Out[19]: u'Max'
# cat blog/models.py
from django.db import models
class Employee(models.Model):
name = models.CharField(max_length=20)
def __unicode__(self): # 通过__unicode__使查询出来的数据以字符串的方式显示
return self.name
# ipython manage.py shell
In [1]: from blog.models import Employee
In [2]: emp = Employee.objects.all()
In [3]: emp
Out[3]: [<Employee: Alen>, <Employee: Tom>, <Employee: Max>, <Employee: Sumer>]
三、传递到web页面显示查询结果
# 添加URL,以及添加index.html模板文件
# egrep -v "#|^$" urls.py
from django.conf.urls.defaults import patterns, include, url
urlpatterns = patterns('',
url(r'^index/$','blog.views.index'),
)
# egrep -v "#|^$" blog/models.py
from django.db import models
class Employee(models.Model):
name = models.CharField(max_length=20)
def __unicode__(self):
return self.name
# egrep -v "#|^$" blog/templates/index.html
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>Loyu Django test</title>
</head>
<body>
{% for emp in emps %}
<div>`forloop`.`counter`:`emp`</div>
{% endfor %}
<div>共有记录</div>
</body>
</html>
四、启动项目
# nohup python manage.py runserver & (使用nohup支持后台启动)
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。