第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Django:通過圖片網(wǎng)址在ImageField中添加圖片

Django:通過圖片網(wǎng)址在ImageField中添加圖片

ITMISS 2019-11-23 10:42:54
請?jiān)徫矣⒄Z不好;-)想象一下這個(gè)非常簡單的模型:class Photo(models.Model):    image = models.ImageField('Label', upload_to='path/')我想從圖像URL創(chuàng)建照片(即,不是在django管理站點(diǎn)中手動(dòng)創(chuàng)建)。我認(rèn)為我需要做這樣的事情:from myapp.models import Photoimport urllibimg_url = 'http://www.site.com/image.jpg'img = urllib.urlopen(img_url)# Here I need to retrieve the image (as the same way that if I put it in an input from admin site)photo = Photo.objects.create(image=image)如果不告訴我,我希望我已經(jīng)很好地解釋了問題。謝謝 :)編輯:這可能有效,但我不知道如何轉(zhuǎn)換content為Django文件:from urlparse import urlparseimport urllib2from django.core.files import Filephoto = Photo()img_url = 'http://i.ytimg.com/vi/GPpN5YUNDeI/default.jpg'name = urlparse(img_url).path.split('/')[-1]content = urllib2.urlopen(img_url).read()# problem: content must be an instance of Filephoto.image.save(name, content, save=True)
查看完整描述

3 回答

  • 3 回答
  • 0 關(guān)注
  • 1189 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)