I'm using the code below. This uploads the image file just fine. But,
in the database, the table field corresponding to the image field of
the model remains empty. Here < image=form.cleaned_data['image'],> is
happening before the save_FOO_file so I can understand that nothing
gets saved in the database. BUT, what do I need to do to save the path
of the uploaded image in the database column corresponding to the
model's ImageField.

---Code Begin---

def agencies_proactive_make(request):
    if request.method == 'POST':
        form = AgencyProactiveMakeForm(request.POST, request.FILES)
        if form.is_valid():
            new_agency =
Agency(  short_name=form.cleaned_data['short_name'],
                                    name=form.cleaned_data['name'],

contact_person=form.cleaned_data['contact_person'],

landline=form.cleaned_data['landline'],

mobile=form.cleaned_data['mobile'],
                                    email=form.cleaned_data['email'],

address=form.cleaned_data['address'],
                                    state=form.cleaned_data['state'],
                                    image=form.cleaned_data['image'],
                                    created_by=request.user,
                                    is_active=True,)
            new_agency.save_image_file(image.filename, image.content)
            new_agency.save()
            return HttpResponseRedirect('/')
    else:
        form = AgencyProactiveMakeForm()
    variables = RequestContext(request, {'form': form})
    return render_to_response('admin/agencies/proactive/
make.html',variables)

---Code End---


On Jun 21, 1:50 pm, Bradley Wright <[EMAIL PROTECTED]> wrote:
> It gets saved to your MEDIA_ROOT directory, unless you specify:
>
> http://www.djangoproject.com/documentation/model-api/#filefield
>
>   image = models.ImageField(upload_to='some/path')
>
> which will upload the image to that directory under the MEDIA_ROOT
> path.
>
> If you're using a custom form, you also need to pass in request.FILES
> like so:
>
>   form = NewForm(request.POST, request.FILES, instance=myobject)
>
> and ensure that your form has the correct enctype:
>
>   <form action="." method="POST" enctype="multipart/form-data">
>     <!-- your form here -->
>
> On Jun 21, 3:01 am, chefsmart <[EMAIL PROTECTED]> wrote:
>
> > > or must we implement this ?    it sounds like you were trying to
> > > implement this.
>
> > I was explicitly calling save_FOO_field in my view before calling
> > save() on the model, if that's what you mean.
>
> > On Jun 18, 10:37 pm, felix <[EMAIL PROTECTED]> wrote:
>
> > > sorry, I can't quite help you.
>
> > > I'm not able to get ImageField to work at all.
>
> > > you say save_FOO_field(filename, raw_contents)
>
> > > it looks like the this method is magically added to the model, right ?
>
> > > or must we implement this ?    it sounds like you were trying to
> > > implement this.
>
> > > did you ever get it ?
>
> > > I also find it very suspicious that since nothing is being succesfully
> > > uploaded, django is still adding more and more _ to the file name.
> > > the MEDIA_ROOT is correct, the subfolder is already there and has
> > > correct permissions, but no files are making it there.
>
> > > On Jun 8, 8:08 am, chefsmart <[EMAIL PROTECTED]> wrote:
>
> > > > Hi, can someone help me with the following please: -
>
> > > > I have a newform with animagefield. The upload is working fine [using
> > > > save_FOO_file(filename, raw_contents)], but I'm not sure what value to
> > > > assign to the model'simagefield, or how to assign it.
>
> > > > The django documentation for save_FOO_file says <begin_quote> If a
> > > > file with the given filename already exists, Django adds an underscore
> > > > to the end of the filename (but before the extension) until the
> > > > filename is available. <end_quote>
>
> > > > How do I know what filename the uploaded file eventually get? How do I
> > > > assign this to the model'simagefieldbefore calling save() on the
> > > > model?
>
> > > > Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to