我以前从未使用过python。因此,我有点困惑。我正在尝试使用 python 脚本从教育 api 获取数据。我不确定我将如何做到这一点。我有以下 python 脚本:
#!/usr/bin/python
# Import modules for CGI handling
import cgi, cgitb
import urllib2
# Create instance of FieldStorage
form = cgi.FieldStorage()
#download data from request parameter 'url'
print "Content-type:text/xml\r\n\r\n"
url = form.getvalue("url")
callback = form.getvalue("callback")
req = urllib2.Request(url)
response = urllib2.urlopen(req)
data = response.read()
print callback + "(" + data+ ")"
我知道我会将此文本中的 url 替换为我从中请求数据的网站的 url。但是,我用什么替换回调?
我也知道我需要进行 ajax 调用来检索浏览器中的 json 数据。我该怎么做?
我必须返回 json 的代码如下:
$.ajax({
url : "getData.py",
data : {url : "http://api.education.com/service/service.php?f=schoolSearch&key=mykey&
sn=sf&v=4&city=Atlanta&state=ga&Resf=json"},
complete : function(xhr, result) {
if (result != "success")
return;
var response = xhr;
console.log(var);