标签:des http io os sp for on 文件 bs
前台:
#html页面:
前台页面照抄官网就行 把 js里面的challs_flash_update()这个函数的 a.url = "/Image/index/upload/";个路径
html里面object标签的 embed src="/static/js/sourceinterfacejs/update.swf"路径改了
后台:(主要是request.FILES.get(‘Filedata‘,None)获取传过来的文件,文件是一个一个传的)
form = request.FILES.get(‘Filedata‘,None)
path = ‘static/media‘
if not os.path.exists(path):
os.makedirs(pathname)
file_name = pathname+‘/‘+form.name
destination = open(file_name, ‘wb+‘)
for chunk in form.chunks():
destination.write(chunk)
destination.close()
return HttpResponse({‘ok‘})
标签:des http io os sp for on 文件 bs
原文地址:http://www.cnblogs.com/Mohf/p/4140615.html