使用django-ajax-uploader重命名文件 [英] rename file with django-ajax-uploader

查看:66
本文介绍了使用django-ajax-uploader重命名文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 https://github.com/skoczen/django-ajax-uploader在Django中上传文件.它可以工作,但是我想在此过程中重命名上载的文件.我想添加一个时间戳,以便确保它具有唯一的名称.

I am using https://github.com/skoczen/django-ajax-uploader to upload a file in django. It works but I would like to rename the uploaded file during the process. I want to add a timestamp so I am sure it has a unique name.

该怎么做?

推荐答案

我最终使用了 jQuery -文件上传.它允许在视图内定义文件的路径.示例:

I finally ended up using jQuery-File-Upload. It allows to define the path of the file inside the view.Example:

urls.py

url(r'^upload_question_photo/$', UploadQuestionPhoto.as_view(), name="upload_question_photo"),

index.html

var input=$(this).find("input");
var formData = new FormData();
formData.append('photo', input[0].files[0]);
formData.append('question', input.attr("name"));
formData.append('csrfmiddlewaretoken', '{{ csrf_token }}');
input.fileupload(
{
    dataType: 'json',
    url: "{% url 'campaigns:upload_question_photo' %}",
    formData: formData,

    //the file has been successfully uploaded
    done: function (e, data) 
    {
        response=data.result;
        window.console&&console.log("Successfully uploaded!");
        window.console&&console.log(response.path);
    }.bind(this),

    processfail: function (e, data) 
    {
        window.console&&console.log('Upload has failed');
    }.bind(this)
});

views.py

class UploadQuestionPhoto(View):
    u"""Uploads photos with ajax 
    Based on the code  #https://github.com/miki725/Django-jQuery-File-Uploader-Integration-demo/blob/master/upload/views.py
    """

    def post(self, request, *args, **kwargs):
        print "UploadQuestionPhoto post"
        response={}

        question=str(request.POST["question"])       
        #path where the file is going to be stored
        path="/question/" + question + "/"
        photo_path=settings.MEDIA_ROOT + path

        # if 'f' query parameter is not specified -> file is being uploaded
        if not ("f" in request.GET.keys()):
            print "file upload"
            # make sure some files have been uploaded
            if request.FILES:
                # get the uploaded file
                photo_file = request.FILES["question_field_" + question]
                name_with_timestamp=str(time.time()) + "_" + photo_file.name

                # create directory if not exists already
                if not os.path.exists(photo_path):
                    os.makedirs(photo_path)

                # add timestamp to the file name to avoid conflicts of files with the same name
                filename = os.path.join(photo_path, name_with_timestamp)
                # open the file handler with write binary mode
                destination = open(filename, "wb+")
                # save file data with the chunk method in case the file is too big (save memory)
                for chunk in photo_file.chunks():
                    destination.write(chunk)
                destination.close()

                #response sent back to ajax once the file has been successfuly uploaded
                response['status']='success'
                response["path"]=photo_path+name_with_timestamp


        # file has to be deleted (TODO: NOT TESTED)
        else: 
            # get the file path by getting it from the query (e.g. '?f=filename.here')
            filepath = os.path.join(photo_path, request.GET["f"])
            os.remove(filepath)
            # generate true json result (if true is not returned, the file will not be removed from the upload queue)
            response = True

        # return the result data (json)
        return HttpResponse(json.dumps(response), content_type="application/json")

Voilà!希望对您有所帮助.

Voilà ! Hope it helps.

这篇关于使用django-ajax-uploader重命名文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆