如何在Flask应用程序的Jquery中使用返回的JSON对象?

时间:2019-04-24 10:43:57

标签: python ajax flask

我想从服务器检索字典,然后使用AJAX将数据发送到我的模板。

getfromfile()函数返回一个字典-d {1:'a',2:'b',3:'c'}。

@app.route('/')
def index():
     return render_template('index.html')

@app.route('/getdata', methods=['POST'])
def getdata():
    d = getfromfile()
    data = jsonify(d)
    return data

index.html

 $(function() {
        $.ajax({
            url: '/getdata',
            dataType: 'json',
            type: 'POST',
            success: function(response) {
                console.log(response);
            },
            error: function(error) {
                 console.log(error);
            }
        });
});

当我console.log响应时,在浏览器中调试时得到[object Object]。

  1. 如何查看json对象的内容?
  2. 如果要将值之一附加到元素上,如何使用json对象的内容。

0 个答案:

没有答案