gpt4 book ai didi

jquery - 如何使用 ajax 从 python wsgi 应用程序读取 JSON 对象

转载 作者:行者123 更新时间:2023-12-01 06:05:06 25 4
gpt4 key购买 nike

这是我的 python 应用程序。

from wsgiref.simple_server import make_server
import json

def application(environ, start_response):
result = [{"name":"John Johnson","street":"Oslo West 555","age":33}]
response_body = json.dumps(result)
status = '200 OK'
response_headers = [('Content-Type', 'text/plain'),
('Content-Length', str(len(response_body)))]
start_response(status, response_headers)
return [response_body]

httpd = make_server('localhost',8051,application)
httpd.handle_request()

所以现在我想要的就是让返回值显示在网络上。我读到有函数 jQuery.getJSON。但我不太明白它是如何工作的。 http://api.jquery.com/jQuery.getJSON/

谢谢。

最佳答案

$.getJSON('http://localhost:8051').success(function(data) {
//here `data` will be your `result` in your python application
});

如果您的 jQuery 版本 < 1.5

$.getJSON('http://localhost:8051', function(data){
// data == result
});

PS:如果返回json对象,最好将Content-Type设置为application/json

关于jquery - 如何使用 ajax 从 python wsgi 应用程序读取 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8445974/

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