我正在尝试使用
Python的AjaxUpload:
http://valums.com/ajax-upload/
我想知道如何使用Python访问上传的文件.在网站上,它说:
* PHP: $_FILES['userfile']
* Rails: params[:userfile]
Python的语法是什么?
request.params [‘userfile’]似乎不起作用.
提前致谢!这是我当前的代码(使用PIL导入为Image)
im = Image.open(request.params['myFile'].file)
最佳答案 在django,你可以使用:
request.FILES['file']
代替:
request.POST['file']
我不知道如何在塔上做…也许它是相同的概念..