我真的很困惑。如果我将以下链接发布到浏览器中,它可以工作,没问题,但是当我要求 jQuery 对其执行时,它返回空白,但没有错误。
链接:
http://www.theyworkforyou.com/api/getConstituency?key=FU8MWTEQnvVsHC6GM7B82zie&postcode=BS345NT
代码:
$.ajax({
url: 'http://www.theyworkforyou.com/api/getConstituency?key=FU8MWTEQnvVsHC6GM7B82zie&postcode='+postcode+'&output=js',
type: 'POST',
success: function(response) {
console.log(response);
}
});
我可以更改密钥,所以不要担心我发布它的事实。
任何想法为什么它不起作用?