python 3.7.1版flask无法加载错误代码500

时间:2019-05-19 00:14:29

标签: javascript python flask

我已经搜索了大部分此问题,当人们使用2.7.3时使用不同版本的python时,它似乎已修复,但是我使用的是3.7.1,它给了我这个错误。

一切正常,直到我添加此代码

Python:

@app.route("/scrape/<input>")
def test(input):
    print(input)
    x = input.title
    return x

Javascript:

function scrape(input){
    // send input to python
    var url = `/scrape/${input}`;
    d3.json(url).then(function(data){
        console.log(data); //should be title
    });
};
正在使用输入变量作为对象调用

javascript函数。我在做什么错...?

0 个答案:

没有答案