Python 使用 AjaxUpload 上传图像
我正在尝试将 AjaxUpload 与 Python 一起使用: http://valums.com/ajax-upload/
我想知道如何访问使用Python上传文件。在网站上,它说:
* PHP: $_FILES['userfile']
* Rails: params[:userfile]
Python 的语法是什么?
request.params['userfile'] 似乎不起作用。
提前致谢!这是我当前的代码(使用作为图像导入的 PIL)
im = Image.open(request.params['myFile'].file)
I'm trying to use AjaxUpload with Python:
http://valums.com/ajax-upload/
I would like to know how to access the uploaded file with Python. On the web site, it says:
* PHP: $_FILES['userfile']
* Rails: params[:userfile]
What is the Syntax for Python?
request.params['userfile'] doesn't seem to work.
Thanks in advance! Here is my current code (using PIL imported as Image)
im = Image.open(request.params['myFile'].file)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我正在与 Pyramid 合作,我也在尝试做同样的事情。一段时间后我想出了这个解决方案。
我不确定这是否是“正确的”,但它似乎有效。
I'm working with Pyramid, and I was trying to do the same thing. After some time I came up with this solution.
I'm not sure if it's the "right" one, but it seems to work.
在django中,你可以使用:
而不是:
我不知道如何在pylons中做...也许这是相同的概念..
in django, you can use:
instead of:
i did not know how to do in pylons...maybe it is the same concept..