对本地主机名的ajax请求[无本地主机,无IP]

时间:2019-03-07 05:56:59

标签: jquery ajax request local hostname

我正在尝试使用ajax从一台PC连接到另一台服务器作为服务器,并使用ajax连接到我的本地网络,如果使用ip,一切正常,但是如果使用计算机名称,则跳过网络消息: :ERR_NAME_NOT_RESOLVED。

$.get('http://192.168.100.100/conector/pruebaConexion?db=gestion_db_2019',function(data){
    console.log(data);
})
.fail(function(err){
    console.log(err);
});

它为我工作。

但是

$.get('http://SAM-PRO-PC/conector/pruebaConexion?db=gestion_db_2019', 
function(data){
    console.log(data);
})
.fail(function(err){
    console.log(err);
});

siendo el主机SAM-PRO-PC,它不起作用

感谢您的帮助。

0 个答案:

没有答案