django將網路中的圖片,儲存成model中的ImageField
阿新 • • 發佈:2018-12-27
有這樣的情形,django個人頭像在model中是:
class UserProfile(AbstractUser):
"""
使用者
"""
name = models.CharField(max_length=30, null=True, blank=True, verbose_name="姓名")
image = models.ImageField(max_length=1000,upload_to='avatar/%Y/%m/', verbose_name=u'頭像', null=True, blank=True)
正常情況下,需要客戶端(app或者瀏覽器post上來圖片,然後儲存到image中)
例如:
image = request.data.get('image', None)
...
user.image=image
user.save()
但是,有這樣的情況,如果是第三方,例如微博登入,前端通過微博介面獲取到微博頭像,post上來的就是頭像的地址,https://xxx.xxx.jpg
這個時候如何通過圖片url,儲存到django的model中呢?
思路是,先通過url下載圖片,然後儲存
from django.core.files import File from io import BytesIO from urllib.request import urlopen url = request.data.get('image', None) r = urlopen(url) io = BytesIO(r.read()) user.image.save("{}_{}.jpg".format(user.id,int(time.time())), File(io))