Re: Image Upload with FalconFramework

2014-07-03 Thread Mark Lawrence
On 03/07/2014 04:54, Peter Romfeld wrote: Hi, I am stuck at a simple image upload function, in django i just used: for feature phones: file = request.body iOS with Form: class ImageForm(forms.Form): image = forms.FileField() What is forms? image is defined at the class level, not the i

Image Upload with FalconFramework

2014-07-02 Thread Peter Romfeld
Hi, I am stuck at a simple image upload function, in django i just used: for feature phones: file = request.body iOS with Form: class ImageForm(forms.Form): image = forms.FileField() form = ImageForm(request.POST, request.FILES) file = request.FILES['image'].read() with falcon i tried but