基本的にリクエストを作成し、結果をスローするこの小さなコードがありますconsole.log
(キーと署名を省略しました)。
問題は、リクエストを行うように見えないことです。
助けてくれてありがとう、私は初心者で、まだ学んでいます。
//alert('you clicked on the discgolf button');
$('#zipsubmit').click(function(){
dgZipSearch(); // call this function perform DGCR search and
populate the page with results
});
function dgZipSearch(){
alert('foo1');
$.ajax({
url:'http://www.dgcr-api.com/?key=xxxxx&mode=findzip&zip=' + $('#zipcode').val() + '&rad=10&sig=yyyyyyy',
dataType: 'jsonp',
success: function(zip_results){
console.log(zip_results);
}
});
alert('foo2');
};