2014-08-29 46 views
0

我在Django 1.6這樣一個模型保存路徑圖像:如何,當我創建使用對象的形式

class Instance(models.Model): 
    ... 
    image = models.ImageField(upload_to='flats_photo',null=True, blank=True) 
    ... 

形式:

class InstanceForm(ModelForm): 
    class Meta: 
     model = Instance 
     fields=[...,'image',...] 

當我創建新的對象我用這樣的觀點:

def add_instance(request): 
    if request.POST: 
     form=InstanceForm(request.POST) 
     if form.is_valid(): 
     f = InstanceForm(request.POST) 
     new_instance=f.save() 

    else:form=InstanceForm() 

    locals().update(csrf(request)) 
    return render_to_response(...) 

創建新對象的所有字段,但不是字段image.There沒有圖像。在django管理員中,我看到:沒有選擇圖像文件。當我從管理員添加對象時,一切正常。如何解決這個問題

回答

相關問題