Итак, вот мое приложение на 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/
Спасибо.