gpt4 book ai didi

python - 使用 Jquery $.ajax 在 Flask 上调用服务器端函数

转载 作者:太空宇宙 更新时间:2023-11-04 02:41:12 26 4
gpt4 key购买 nike

<分区>

我想使用 Ajax 调用服务器端函数。

我找到了一个简单的 PHP 示例 in this post .我认为如果我们可以包含这个完全相同的示例但用于 Python/Flask MVC 框架,社区将会有所改善。

这是View端的ajax代码,叫做test.html:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

<script>
function create () {
$.ajax({
url:"test1", //the page containing python script
type: "post", //request type,
dataType: 'json',
data: {registration: "success", name: "xyz", email: "abc@gmail.com"},
success:function(result){
console.log(result.abc);
}
});
}
</script>

这将是 Controller 上的 Python 代码:

@app.route('/test', methods=['GET','POST'])
def test():
return render_template("test.html", brand = brand)

@app.route('/test1', methods=['GET','POST'])
def test1():
if registration == "success":
return json.dump({"abc":'successfuly registered'});

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com