1

我正处于创建 Flask 应用程序的早期阶段,并遇到了来自 @Miguel Grinberg 的一个很好的例子,它是关于创建一个长时间运行的任务的。目前,我想减少我在项目中必须学习/使用的 JavaScript 数量,Transcrypt 引起了我的注意。

但是,我在试图弄清楚如何完成 POST 请求以触发任务的文档中有点迷失了。下面是 JavaScript 中的代码:

    // send ajax POST request to start background job
        $.ajax({
            type: 'POST',
            url: '/longtask',
            success: function(data, status, request) {
                status_url = request.getResponseHeader('Location');
                update_progress(status_url, nanobar, div[0]);
            },
            error: function() {
                alert('Unexpected error');
            }
        });

我将如何使用 Transcrypt 在 Python 中完成此任务?

4

2 回答 2

3

进行如下操作:

$不是 Python 中的有效标识符,因此__pragma__ ('alias', 'jq', '$')如下使用。

除了 lambda 之外,Python 不知道匿名函数,因此请使用普通函数作为回调。在下面的示例中,使用了局部函数。

注意在字段名称周围加上引号,例如“成功”而不是“成功”,因为这是 Python 约定。

使用 Transcrypt 的 Ajax 示例:

__pragma__ ('alias', 'jq', '$')

# For use by eval'ed turtle applet
import turtle
import random
import math

def clear ():
    editor.setValue ('')
    turtle.reset ()
    run ()

def run ():
    def success (result):
        turtle.reset ()
        eval (result)

    def fail (a, b, c):
        print ('Run error:', a, b, c)

    # N.B. The request has to be explicitly encoded, but the response is already implicitly decoded
    jq.ajax ({
        'url':'http://www.transcrypt.org/compilemodule',
        'type': 'POST',
        'data': JSON.stringify (editor.getValue ()),
        'dataType': 'json',
        'contentType': 'application/json',
        'success': success,
        'fail': fail
    })

def mail ():
    def success (result):
        print (result)

    def fail (a, b, c):
        print ('Run error:', a, b, c)

    jq.ajax ({
        'url':'http://www.transcrypt.org/sendmail',
        'type': 'POST',
        'data': JSON.stringify ([document.getElementById ('mail_address') .value, editor.getValue ()]),
        'dataType': 'json',
        'contentType': 'application/json',
        'success': success,
        'fail': fail
    })

def selectExample ():
    def success (result):
        editor.setValue (result [0])
        turtle.reset ()     # Using old paths
        window.terminate = True
        eval (result [1])   # Using new paths (so cannot clear old result)

    def fail (a, b, c):
        print ('Select example error:', a, b, c)

    selector = document.getElementById ('select_example')

    jq.ajax ({
        'url':'http://www.transcrypt.org/selectexample',
        'type': 'POST',
        'data': JSON.stringify (selector.options [selector.selectedIndex] .value),
        'dataType': 'json',
        'contentType': 'application/json',
        'success': success,
        'fail': fail
    })

selectExample ()
于 2017-04-19T12:37:43.297 回答
1

您可以在 Flask 中使用 post 方法。

from flask import Flask
app = Flask(__name__)

@app.route('/index/', methods=['POST'])
def sample_function():
    # do your server task here
    return "BROWSER Update/response"

app.run("127.0.0.1", "8000")

在 JavaScript 中,http://127.0.0.1:8000/index/使用 AJAX 调用。

于 2017-04-19T11:38:12.733 回答