使用$ .getJSON将$ _GET中的城市替换为纬度和经度

时间:2019-01-05 23:01:48

标签: javascript php jquery json

我有以下JavaScript代码:

function jsnCoord(callback) {
    $.getJSON('https://nominatim.openstreetmap.org/search?format=json&limit=1', {city: $('[name=search-value]').val()}, function (data) {
        callback(data[0]);
    });
}

function getCoord(val) {
    alert('Do something with ' + val.lat + ' here!');
}

我输入城市名称以输入并提交GET表单。然后,我想从我的$ _GET ['cityname']参数中获取经度和纬度,并将其保存到php变量中。当带有$ .getJSON的函数在没有回调的情况下无法返回数据时,我该如何使用我的js函数呢?谢谢

0 个答案:

没有答案