博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python django 上传文件到七牛
阅读量:4963 次
发布时间:2019-06-12

本文共 1639 字,大约阅读时间需要 5 分钟。

# -*- coding:utf-8 -*-import jsonimport uuidimport osfrom qiniu import Auth, put_datafrom django.http import HttpResponseclass UploadFilesToQiNiu(object):    def post(self, request):        try:            cur_file = request.FILES.get('file', '')        except:            return HttpResponse(json.dumps({"message": "No File Uploaded"}), status=400,                                content_type="application/json")        # 生成name        cur_file_name = cur_file.name        file_name_list = cur_file_name.split('.')        file_last_name = file_name_list[-1]        cur_file_name = str(uuid.uuid4()) + '.' + file_last_name        # 上传需要二进制流格式        my_file = open(cur_file_name, 'wb')        my_file.write(cur_file.read())        my_file.close()        my_file = open(cur_file_name, 'rb')        upload_to_qiniu(cur_file_name,                        my_file,                        settings.QINIU_BUCKET_NAME)        #        cur_link = 'http://' + settings.QINIU_DOMAIN + '/' + cur_file_name        my_file.close()        os.remove(cur_file_name)        return HttpResponse(json.dumps({"filelink": cur_link}), content_type="application/json")def upload_to_qiniu(key, localfile, bucket_name):    '''    key: 上传到七牛后保存的文件名    localfile: 要上传文件的本地路径或者文件    bucket_name: 要上传的空间    '''    # Access Key  Secret Key    access_key = 'kkkkkk'    secret_key = 'kkkkkk'    # 构建鉴权对象    q = Auth(access_key, secret_key)    # 生成上传 Token,可以指定过期时间等    token = q.upload_token(bucket_name, key, 3600)    ret, info = put_data(token, key, localfile)    # print ret    # print info    return ret, info

  

转载于:https://www.cnblogs.com/django-start/p/8399948.html

你可能感兴趣的文章
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
C# 通知机制 IObserver<T> 和 IObservable<T>
查看>>