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

溫馨提示×

溫馨提示×

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

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

django中ORM操作實現增加和查詢的示例分析

發布時間:2021-07-22 14:22:33 來源:億速云 閱讀:117 作者:小新 欄目:開發技術

這篇文章主要介紹django中ORM操作實現增加和查詢的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

ORM 對象關系映射

在數據庫中,實現對數據的增刪改查,使用的是SQ語句,

在django中,通過python代碼,實現對數據庫的增刪改查,這就是ORM。

在python中,用類名 代表 django數據庫的表名,

用對象 ,代表django數據庫的一條記錄,

ORM 就是封裝了SQ語句,給對象進行增刪改查,實現對數據庫的操作,

在settings 文件中,默認了splite的數據庫,自己可以修改

DATABASES = {
  'default': {
    'ENGINE': 'django.db.backends.sqlite3',
    'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  }
}<br data-filtered="filtered"><br data-filtered="filtered">BASE_DIR 是代表當前的文件夾 settings,

django對數據庫的遷移,只需要修改配置即可,

===

在model文件中,設計表,,

from django.db import models

# Create your models here.

#繼承來自models ,
class Book(models.Model):
  name = models.CharField(max_length=32)
  price = models.IntegerField()
  Date = models.DateField()
  auth = models.CharField(max_length=32)
  publish = models.CharField(max_length=32)

命令臺執行命令。

python manage.py makemigrations 
python manage.oy migrate

生成數據庫表

在template ,寫一個主頁index.html文件,用于顯示添加后書籍

{% load staticfiles %} #  ------引用靜態文件
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link rel="stylesheet" href="{% static '/bootstrap-3.3.7/dist/css/bootstrap.css/' %}" rel="external nofollow" >  # ---導入bootstrap 文件

  <style>

    .container{
      margin-top: 50px;
    }

  </style>

</head>
<body>


<div class="container">
  <div class="row">


    <div class="col-md-6 col-md-offset-2">
    <a href="/addbook/" rel="external nofollow" ><button class="btn btn-primary">添加書籍</button></a>
    <table class="table table-striped">
      <tr>
        <th>ID</th>
        <th>書名</th>
        <th>價格</th>
        <th>出版日期</th>
        <th>作者</th>
        <th>出版社</th>
      </tr>
{#      <tr>#}
{#        <td>1</td>#}
{#        <td>水滸城</td>#}
{#        <td>110</td>#}
{#        <td>2011.1.1</td>#}
{##}
{#        <td>egon</td>#}
{#        <td>人民出版社</td>#}
{#      </tr>#}
{#       <tr>#}
{#        <td>2</td>#}
{#        <td>水滸城</td>#}
{#        <td>110</td>#}
{#        <td>2011.1.1</td>#}
{##}
{#        <td>egon</td>#}
{#        <td>人民出版社</td>#}
{#      </tr>#}
       {% for book in book_list %}  #--從數據庫取到的數據是一個QuerySet集合,進行for循環,遍歷出每個對象,
      <tr>

          <td>{{ book.id }}</td> #---把每個對象的屬性的值渲染出來,
          <td>{{ book.name }}</td>
          <td>{{ book.price }}</td>
          <td>{{ book.Date }}</td>
          <td>{{ book.auth }}</td>
          <td>{{ book.publish }}</td>

      </tr>
      {% endfor %}
    </table>

  </div>
  </div>

</div>
</body>

<script>


</script>

</html>

寫一個addbook.html 文件,用于添加書籍,然后跳轉到index頁面

{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link rel="stylesheet" href="{% static '/bootstrap-3.3.7/dist/css/bootstrap.css/' %} " rel="external nofollow" >

  <style>
    .container{
      margin-top: 50px;
    }
  </style>

</head>
<body>


<div class="container">

  <div class="row">

    <div class="col-md-6 col-md-offset-2">
{#      {{ csrf-token }}#}
      <form class=addbook" action="/addbook/" method="post">

{#      當點擊添加按鈕時,是執行視圖函數,在數據庫中添加一條記錄,然后再把這個記錄添加到index頁面#}

      <div class="form-group">
        <label for="bookname">書名:</label>
        <input type="text" class="form-control" id="bookname" name="bookname">  #---input 中的name屬性,用于獲取輸入的值,
      </div>
      <div class="form-group">
        <label for="price">價格:</label>
        <input type="text" class="form-control" id="price" name="price"> #---input 中的name屬性,用于獲取輸入的值,
      </div>
      <div class="form-group">
        <label for="Date">日期:</label>
        <input type="text" class="form-control" id="Date" name="Date">  #---input 中的name屬性,用于獲取輸入的值,
      </div>
      <div class="form-group">
        <label for="auth">作者:</label>
        <input type="text" class="form-control" id="auth" name="auth">  #---input 中的name屬性,用于獲取輸入的值,
      </div>

      <div class="form-group">
        <label for="publish">出版社:</label>
        <input type="text" class="form-control" id="publish" name="publish">  #---input 中的name屬性,用于獲取輸入的值,
      </div>

      <input class="btn btn-info" type="submit" value='添加'>

      </form>



    </div>
  </div>

</div>


</body>

</html>

在url文件中,匹配index頁面和addbook頁面的視圖函數

from django.conf.urls import url
from django.contrib import admin

from app01 import views

urlpatterns = [
  url(r'^admin/', admin.site.urls),
  url(r'^index/$',views.index),
  url(r'^addbook/$',views.addbook),
]

在views文件中,寫邏輯代碼。用戶訪問index頁面,點擊添加按鈕,跳到addbook頁面添加數據后,提交后,存到數據庫,再從數據庫拿到數據顯示到index頁面

步驟1,在index頁面要顯示數據庫的信息,就要導入Book表,獲取所有的數據,return render 進行渲染到頁面展示

步驟2 ,addbook函數,從form表單中拿到添加的數據,從request里,以post的方法拿到,

存到數據庫,用create方法,表名.objects .create(數據庫的字段名= 表單中的name的屬性名)

Book.objects.create(name = bookname,price = price, Date = Date, auth = auth , publish = publish)

左邊的name 是models里的字段名,對應到form里取到的值,

from django.shortcuts import render,redirect

# Create your views here.
from app01.models import Book

def index(request):

  #把數據庫的數據嵌入到頁面進行顯示
  #查詢api,所有書籍
  book_list = Book.objects.all() #數據類型是QuerySet:[book1,book2...]

  return render(request,'index.html',locals())


def addbook(request):

  #是form提交post的方法,
  if request.method == 'POST':
    #從form表單取數據
    bookname = request.POST.get('bookname')
    price = request.POST.get('price')
    Date = request.POST.get('Date')
    auth = request.POST.get('auth')
    publish = request.POST.get('publish')

  #把數據存到數據庫,先把models 中的表引導到views文件

  #方法1,左邊的name 是models里的字段名,對應到form里取到的值,


    Book.objects.create(name = bookname,price = price, Date = Date, auth = auth , publish = publish)


  #存到數據庫后要放到index頁面,但現在是addbook頁面,所以要跳轉

    return redirect('/index/')

  return render(request,'addbook.html')

以上是“django中ORM操作實現增加和查詢的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

五华县| 洞口县| 济宁市| 全椒县| 鄂尔多斯市| 龙陵县| 雷州市| 霍城县| 海门市| 分宜县| 陆河县| 岳池县| 盈江县| 曲松县| 阳江市| 宁远县| 德安县| 牙克石市| 沧州市| 常山县| 合肥市| 陈巴尔虎旗| 九龙城区| 玉门市| 诸暨市| 县级市| 贡嘎县| 新巴尔虎右旗| 贵溪市| 安龙县| 苏州市| 田东县| 科尔| 西丰县| 什邡市| 丁青县| 右玉县| 双辽市| 金坛市| 石城县| 三明市|