Python3.4处理UTF编码的POST数据

时间:2016-02-07 11:38:18

标签: javascript jquery python python-3.x pyqt5

我正在使用Python3.4和瓶子web-framekwork通过AJAX POST请求将文件名传递给一些打开文件并对其进行处理的python代码。但是,当文件名有非英文字母时,例如韩文。由于路径错误,我无法打开文件。

如果我在Javascript中使用escape()传递它然后在python代码中使用html.unescape(),我会得到稍微修改的错误:

  

FileNotFoundError:[Errno 2]没有这样的文件或目录:   'C:\ Data \ [%uC9C1%uCEA0] 160123%uBC0D%uC2A4(%uC218%uC544)   %uC6B0%uB9AC.mp4'

如何正确处理此问题以便我可以访问非英文命名文件?

提前致谢。

1 个答案:

答案 0 :(得分:0)

你可以这样做;我测试了它并没有那个问题:

在浏览器(JQuery / JavaScript)中:

    function newModule() {

        var path = $("#path").val();          // Whatever value you want to be sent.

        $.ajax({
            url: "{% url 'modules' %}",       // Handler as defined in Django URLs. 
            type: "POST",                     // Method.
            dataType: "json",                 // Format as JSON (Default).
            data: {
                path: path,                   // Dictionary key (JSON). 
                csrfmiddlewaretoken: 
                         '{{ csrf_token }}'   // Unique key.
            },

            success: function (json) {

                // On success do this.

            },

            error: function (xhr, errmsg, err) {

                // On failure do this. 

            }

        });

在服务器引擎(Python)中:

def handle(request):

    # Post request containing the key.  
    if request.method == 'POST' and 'path' in request.POST.keys():

        # Retrieving the value.
        current_title = request.POST['path']
        # You can also do |ttl = current_title.encode('utf-8')| to make sure.

    # ...