2006年03月21日 星期二 20:54
现在换个学法了 不再是单一的翻东西,加上实际动手做了 关于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
2006年03月21日 星期二 20:58
On 3/21/06, 风向标 <vaneoooo at gmail.com> wrote: > > > 现在换个学法了 > 不再是单一的翻东西,加上实际动手做了 > > 关于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方法? 上传的位置在 MEDIA_ROOT 中设置了。在FAQ中也有说明。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年03月21日 星期二 21:08
是指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="""""" > > > > 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
2006年03月21日 星期二 21:10
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
2006年03月21日 星期二 21:15
呵呵,是啊。我也参考了 不过教程中的是夹杂了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
2006年03月21日 星期二 22:08
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
Zeuux © 2025
京ICP备05028076号