__init __()得到了一个意外的关键字参数'save' - django python

时间:2013-10-14 15:23:05

标签: python django

我正在尝试将图像保存到ImageField

location = Location()
image = Image()
name = urlparse(url).path.split('/')[-1]                            
image.bild.save(name, File(urllib2.urlopen(url).read(), save=False))
image.von_location = location
image.save()

但我正在

__init__() got an unexpected keyword argument 'save' 
这是为什么?我在这做错了什么?

1 个答案:

答案 0 :(得分:1)

File构造函数不接受save参数。也许你的意思是将其传递给image.bild.save()