Uncaught Reference Error: обратный вызов не определен - PullRequest
0 голосов
/ 10 июня 2019

Я хочу получить IP-адрес машины с помощью javascript ajax.

Я использовал сайт https://geoip -db.com / jsonp / . с ajax, но ошибка продолжает вставать.

jQuery.ajax({
    url: 'https://geoip-db.com/jsonp/',
    dataType: 'jsonp'
});

Сообщение об ошибке:

Uncaught ReferenceError: обратный вызов не определен at? callback = jQuery19009023082782456009_1560194259394 & _ = 1560194259395: 1

1 Ответ

0 голосов
/ 10 июня 2019

Вместо jQuery.ajax({ url: 'https://geoip-db.com/jsonp/', dataType: 'jsonp' });

Использовать jQuery.ajax({ url: 'https://geoip-db.com/json/', dataType: 'json' });

...