此 Python 代码工作正常
print 'foo'
params = {'memberId': '1'}
data = urllib.urlencode(params)
url = 'http://aaa.bbb.com/ccc/'
req = urllib2.Request(url, data, {'Content-Type': 'application/json'})
f = urllib2.urlopen(req)
response = f.read()
print '===>', response
response = eval(response.decode('unicode-escape'))
f.close()
我想知道相应的javascript代码是什么?我试过这个,警告“错误”。目前我在 ddd.bbb.com。Web 服务位于 aaa.bbb.com。我无法为此设置相对路径。
请告知如何配置跨域。谢谢。
jQuery.ajax({
url: 'http://aaa.bbb.com/ccc',
type: 'GET',
contentType: "application/json",
dataType: "json",
data: {'memberId':'1'},
success: function (data) {
alert("ok");
},
error: function () {
alert("error");
}
});