這篇文章主要介紹django怎么實(shí)現(xiàn)將本地圖片存入數(shù)據(jù)庫(kù)并能顯示在web上,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
為偏關(guān)等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及偏關(guān)網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、偏關(guān)網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!1. 將圖片存入數(shù)據(jù)庫(kù)
這里我默認(rèn)您已經(jīng)會(huì)了基本操作,能在數(shù)據(jù)庫(kù)中存圖片了,然后,也會(huì)用圖形界面操作數(shù)據(jù)庫(kù)中的數(shù)據(jù)了
2.這里,我先給出我的代碼,能少走些彎路就少走些
a) 項(xiàng)目的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)
+號(hào)后面的一定要寫,如果想出來(lái)結(jié)果的話!否則回報(bào)一個(gè) 404 的錯(cuò)誤
- b) 應(yīng)用里的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
之后,你要會(huì)把IMG這個(gè)模式推送到數(shù)據(jù)庫(kù)。
python ./manage.py makemigrations python ./manage.py migrate
c) 應(yīng)用的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這個(gè)參數(shù)傳過(guò)去,傳到Welcome.html
- d) Welcome.html
welcome {% for i in img %} {% endfor %}
e) 設(shè)置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總的+號(hào)后面的也要跟著變化
3. 在http://127.0.0.1:8000/admin/網(wǎng)址上面,上傳你的圖片
以上是“django怎么實(shí)現(xiàn)將本地圖片存入數(shù)據(jù)庫(kù)并能顯示在web上”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!