中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

django怎么實現將本地圖片存入數據庫并能顯示在web上

發布時間:2021-05-06 09:54:28 來源:億速云 閱讀:387 作者:小新 欄目:開發技術

這篇文章主要介紹django怎么實現將本地圖片存入數據庫并能顯示在web上,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1. 將圖片存入數據庫

這里我默認您已經會了基本操作,能在數據庫中存圖片了,然后,也會用圖形界面操作數據庫中的數據了

2.這里,我先給出我的代碼,能少走些彎路就少走些

a) 項目的urls.py

from django.contrib import admin
from django.urls import path
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
  path('admin/', admin.site.urls),
]+static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT)

+號后面的一定要寫,如果想出來結果的話!否則回報一個 404 的錯誤

- b) 應用里的models.py

from django.db import models

# Create your models here.
class Person(models.Model):
  name = models.CharField(max_length=30)
  age = models.IntegerField()

  def __unicode__(self):
  # 在Python3中使用 def __str__(self):
    return self.name

class IMG(models.Model):
  img = models.ImageField(upload_to='img')
  name = models.CharField(max_length=20)
  def __str__(self):
  # 在Python3中使用 def __str__(self):
    return self.name

之后,你要會把IMG這個模式推送到數據庫。

python ./manage.py makemigrations
python ./manage.py migrate

c) 應用的views.py

# Create your views here.
def hello(request):
  IMG.objects.filter(name='bg')
  img = IMG.objects.all()
  return render(request, 'Welcome.html',{'img':img})

把img這個參數傳過去,傳到Welcome.html

- d) Welcome.html

<!DOCTYPE HTML>
<html>

<head>
  <title> welcome </title>
</head>
<body >
    {% for i in img %}
    <img src="{{MEDIA_URL}}{{i.img}}">
    {% endfor %}

</body> 
</html>

e) 設置setting.py

TEMPLATES = [
  {
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [],
    'APP_DIRS': True,
    'OPTIONS': {
      'context_processors': [
        'django.template.context_processors.debug',
        'django.template.context_processors.request',
        'django.contrib.auth.context_processors.auth',
        'django.contrib.messages.context_processors.messages',
        'django.template.context_processors.media',
      ],
    },
  },
]

MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')

注意,東西都是配套使用的,如果e中的路徑要變的話,a總的+號后面的也要跟著變化

3. 在http://127.0.0.1:8000/admin/網址上面,上傳你的圖片

django怎么實現將本地圖片存入數據庫并能顯示在web上

以上是“django怎么實現將本地圖片存入數據庫并能顯示在web上”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

芮城县| 尚志市| 乌恰县| 荔浦县| 九龙城区| 河间市| 玉环县| 民县| 运城市| 巴林左旗| 通化县| 会泽县| 大姚县| 无为县| 甘孜| 郯城县| 密云县| 罗源县| 开江县| 南涧| 北宁市| 隆回县| 荥经县| 柳河县| 玉山县| 确山县| 石楼县| 建宁县| 额济纳旗| 镇远县| 张家港市| 吉木乃县| 嵊州市| 岱山县| 曲松县| 乌审旗| 万年县| 缙云县| 稷山县| 墨玉县| 福鼎市|