我已经搜索了大部分此问题,当人们使用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函数。我在做什么错...?