gpt4 book ai didi

javascript - JSONify 返回奇怪的值

转载 作者:行者123 更新时间:2023-12-03 00:57:55 24 4
gpt4 key购买 nike

我想做的是通过 AJAX 将 Python 函数的结果返回到我的 javascript。目前我得到 This Response当我期待“True”或“False”时

jquery:

  var test = $.getJSON("/chk_chn", {
name: channel_name
});

alert(test.toSource())

python :

@app.route("/chk_chn")
def chk_chn_unique():
"""Checks a name against all existing Channels in a Channel List. Returns True if name is unique, False otherwise"""
name = request.args.get("name")
for channel in Channels:
if channel.get_name() == name:
return jsonify(result=False)
return jsonify(result=True)

最佳答案

你尝试过吗:

return jsonify({result: True})

关于javascript - JSONify 返回奇怪的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52743188/

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