Dropzone.js阻止Flask呈现模板

时间:2017-02-07 23:15:50

标签: javascript python python-2.7 flask dropzone.js

我正在使用Dropzone.js来允许通过CSV网站上传Flask个文件。上传过程非常有效。我将上传的文件保存到指定的文件夹,然后可以使用df.to_html()dataframe转换为HTML代码,然后将其传递给我的模板。它到达代码中的那一点,但它不呈现模板并且不会抛出任何错误。所以我的问题是Dropzone.js为什么阻止渲染发生?

我还尝试从表中返回HTML代码,而不是使用render_template,但这也不起作用。

初始化的.py

import os
from flask import Flask, render_template, request
import pandas as pd

app = Flask(__name__)

# get the current folder
APP_ROOT = os.path.dirname(os.path.abspath(__file__))

@app.route('/')
def index():
    return render_template('upload1.html')


@app.route('/upload', methods=['POST'])
def upload():

    # set the target save path
    target = os.path.join(APP_ROOT, 'uploads/')

    # loop over files since we allow multiple files
    for file in request.files.getlist("file"):

        # get the filename
        filename = file.filename

        # combine filename and path
        destination = "/".join([target, filename])

        # save the file
        file.save(destination)

        #upload the file
        df = pd.read_csv(destination)
        table += df.to_html()

    return render_template('complete.html', table=table)


if __name__ == '__main__':
    app.run(port=4555, debug=True)

upload1.html

<!DOCTYPE html>

<meta charset="utf-8">

<script src="https://rawgit.com/enyo/dropzone/master/dist/dropzone.js"></script>
<link rel="stylesheet" href="https://rawgit.com/enyo/dropzone/master/dist/dropzone.css">


<table width="500">
    <tr>
        <td>
            <form action="{{ url_for('upload') }}", method="POST" class="dropzone"></form>
        </td>
    </tr>
</table>

修改

以下是我上传的示例csv数据:

Person,Count
A,10
B,12
C,13

Complete.html

<html>

<body>

{{table | safe }}

</body>
</html>

3 个答案:

答案 0 :(得分:5)

您的代码 有效。您的模板将被渲染并返回。

Dropzone会将您拖放到浏览器中的文件上传到后台&#39;。 它会消耗来自服务器的响应并按原样保留页面。它使用服务器的响应来了解上传是否成功。

要看到这一点:

  • 导航到您的页面
  • 打开您最喜欢的浏览器开发工具; (在firefox中按CTRL + SHIFT + K)
  • 选择网络标签
  • 将您的csv拖到dropzone窗格中,并注意该请求显示在开发工具网络表

这是我浏览器的屏幕截图。我从您的问题中复制了您的代码。

Screen shot of code working

要实际看到渲染的complete.html,您需要添加另一个烧瓶端点,并有办法导航到该端点。

例如: 在upload1.html添加:

<a href="{{ url_for('upload_complete') }}">Click here when you have finished uploading</a>

init.py中更改并添加:

def upload():

    ...

        # you do not need to read_csv in upload()
        #upload the file
        #df = pd.read_csv(destination)
        #table += df.to_html()

    return "OK"
    # simply returning HTTP 200 is enough for dropzone to treat it as successful
    # return render_template('complete.html', table=table)

# add the new upload_complete endpoint
# this is for example only, it is not suitable for production use
@app.route('/upload-complete')
def upload_complete():
    target = os.path.join(APP_ROOT, 'uploads/')
    table=""
    for file_name in os.listdir(target):
        df = pd.read_csv(file_name)
        table += df.to_html()
    return render_template('complete.html', table=table)

答案 1 :(得分:4)

更新:现在您可以使用Flask-Dropzone,这是一个将Dropzone.js与Flask集成的Flask扩展程序。对于此问题,您可以在上传完成时将DROPZONE_REDIRECT_VIEW设置为要重定向的视图。

Dropzone.js使用AJAX发布数据,这就是为什么它不会将控件返回给你的视图功能。

当所有文件都完整上传时,有两种方法可以重定向(或渲染模板)。

  • 您可以添加一个按钮进行重定向。

    <a href="{{ url_for('upload') }}">Upload Complete</a>

  • 您可以将事件监听器添加到自动重定向页面(使用jQuery)。

    <script>
    Dropzone.autoDiscover = false;
    
    $(function() {
      var myDropzone = new Dropzone("#my-dropzone");
      myDropzone.on("queuecomplete", function(file) {
        // Called when all files in the queue finish uploading.
        window.location = "{{ url_for('upload') }}";
      });
    })
    </script>
    

在视图函数中,添加if语句以检查HTTP方法是否为POST

import os
from flask import Flask, render_template, request

app = Flask(__name__)
app.config['UPLOADED_PATH'] = 'the/path/to/upload'

@app.route('/')
def index():
    # render upload page
    return render_template('index.html')


@app.route('/upload', methods=['GET', 'POST'])
def upload():
    if request.method == 'POST':
        for f in request.files.getlist('file'):
            f.save(os.path.join('the/path/to/upload', f.filename))
    return render_template('your template to render')

答案 2 :(得分:0)

如果您使用的是Flask-Dropzone,则:

{{ dropzone.config(redirect_url=url_for('endpoint',foo=bar)) }}