python - AttributeError:addinfourl实例没有属性'__committed'

时间:2013-10-14 14:25:29

标签: python django urllib

我正在尝试从网址读取图片并将其保存到模型中。但我收到此错误消息:

AttributeError: addinfourl instance has no attribute '__committed'

这是我的代码:

location = Location()
location.save()
image = urllib.urlopen(img_url)
location.locations_image.create(bild=image)

我想,从网址读取图片文件时我做错了什么。有人可以指导我吗?非常感谢

0 个答案:

没有答案