Python论坛  - 讨论区

标题:[python-chinese] django的上传文件部分

2006年03月21日 星期二 20:54

风向标 vaneoooo at gmail.com
Tue Mar 21 20:54:03 HKT 2006

现在换个学法了
不再是单一的翻东西,加上实际动手做了

关于request的FILES对象。我写了这样一个小页面:


from django.http import *

abc="""
""" bbc="""ok!!!""" def index(request): i=request.FILES.get('file1',None) if i: return HttpResponse(bbc) else: return HttpResponse(abc) 然后呢,我就觉得,上传文件的存放位置没有指定 通常是怎么进行指定和存放呢?还要载入OS模块?? 还有看文档里谈的,我理解是"只能包含数据文件?"will only contain data??? 不知道是我英文问题还是真的就是只能包含数据文件。 如果我上传jpg图片,gif图片等等,不能使用FILES方法? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060321/c47fb8b0/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年03月21日 星期二 20:58

limodou limodou at gmail.com
Tue Mar 21 20:58:08 HKT 2006

On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote:
>
>
> 现在换个学法了
> 不再是单一的翻东西,加上实际动手做了
>
> 关于request的FILES对象。我写了这样一个小页面:
>
>
>
> from django.http import *
>
> abc="""
> action=""> > > >
""" > > bbc="""ok!!!""" > > > def index(request): > i=request.FILES.get('file1',None) > if i: > return HttpResponse(bbc) > else: > return HttpResponse(abc) > > > > 然后呢,我就觉得,上传文件的存放位置没有指定 > > 通常是怎么进行指定和存放呢?还要载入OS模块?? > > 还有看文档里谈的,我理解是"只能包含数据文件?"will only contain data??? > > 不知道是我英文问题还是真的就是只能包含数据文件。 > > 如果我上传jpg图片,gif图片等等,不能使用FILES方法? 上传的位置在 MEDIA_ROOT 中设置了。在FAQ中也有说明。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年03月21日 星期二 21:08

风向标 vaneoooo at gmail.com
Tue Mar 21 21:08:13 HKT 2006

是指setting.py????



在06-3-21,limodou <limodou at gmail.com> 写道:
>
> On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote:
> >
> >
> > 现在换个学法了
> > 不再是单一的翻东西,加上实际动手做了
> >
> > 关于request的FILES对象。我写了这样一个小页面:
> >
> >
> >
> > from django.http import *
> >
> > abc="""
> > action=""> > > > > > >
""" > > > > bbc="""ok!!!""" > > > > > > def index(request): > > i=request.FILES.get('file1',None) > > if i: > > return HttpResponse(bbc) > > else: > > return HttpResponse(abc) > > > > > > > > 然后呢,我就觉得,上传文件的存放位置没有指定 > > > > 通常是怎么进行指定和存放呢?还要载入OS模块?? > > > > 还有看文档里谈的,我理解是"只能包含数据文件?"will only contain data??? > > > > 不知道是我英文问题还是真的就是只能包含数据文件。 > > > > 如果我上传jpg图片,gif图片等等,不能使用FILES方法? > > 上传的位置在 MEDIA_ROOT 中设置了。在FAQ中也有说明。 > > > -- > I like python! > My Blog: http://www.donews.net/limodou > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060321/e88242ca/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年03月21日 星期二 21:10

limodou limodou at gmail.com
Tue Mar 21 21:10:44 HKT 2006

On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote:
>
>
> 是指setting.py????
>
>

是呀。我的教程里面也有文件上传的处理呀。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年03月21日 星期二 21:15

风向标 vaneoooo at gmail.com
Tue Mar 21 21:15:48 HKT 2006

呵呵,是啊。我也参考了
不过教程中的是夹杂了cvs文件处理的。
看的时候知识点太多了,一时消化不完
现在拆分开来一个一个学塌实

在06-3-21,limodou <limodou at gmail.com> 写道:
>
> On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote:
> >
> >
> > 是指setting.py????
> >
> >
>
> 是呀。我的教程里面也有文件上传的处理呀。
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060321/c236dec4/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年03月21日 星期二 22:08

风向标 vaneoooo at gmail.com
Tue Mar 21 22:08:05 HKT 2006

from django.http import *

abc="""
""" bbc="""ok!!!""" def index(request): i=request.FILES.get('file1',None) if i: return HttpResponse(bbc) else: return HttpResponse(abc) 就这段代码,我在setting.py里设置了MEDIA_ROOT = '/updata1/' 同级目录下也有个updata1目录 可是上传后页面返回ok了 进updata1目录里查找还是没有文件? 在06-3-21,风向标 <vaneoooo at gmail.com> 写道: > > > > 呵呵,是啊。我也参考了 > 不过教程中的是夹杂了cvs文件处理的。 > 看的时候知识点太多了,一时消化不完 > 现在拆分开来一个一个学塌实 > > 在06-3-21,limodou <limodou at gmail.com> 写道: > > > > On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote: > > > > > > > > > 是指setting.py???? > > > > > > > > > > 是呀。我的教程里面也有文件上传的处理呀。 > > > > -- > > I like python! > > My Blog: http://www.donews.net/limodou > > NewEdit Maillist: http://groups.google.com/group/NewEdit > > > > _______________________________________________ > > python-chinese > > Post: send python-chinese at lists.python.cn > > Subscribe: send subscribe to python-chinese-request at lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060321/d3e5f469/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号