我一直在玩 node.js,然后遇到了 express 框架。当使用不同的端口时,我似乎无法让它工作。
我在http://localhost:8888上有我的 ajax,这是我在 Mac 上运行的 MAMP 服务器。
$.ajax({
url: "http://localhost:1337/",
type: "GET",
dataType: "json",
data: { },
contentType: "application/json",
cache: false,
timeout: 5000,
success: function(data) {
alert(data);
},
error: function(jqXHR, textStatus, errorThrown) {
alert('error ' + textStatus + " " + errorThrown);
}
});
如您所见,我的 node.js 服务器正在http://localhost:1337/上运行。结果什么都没有返回,它抛出了一个错误。
有没有解决的办法?
谢谢
本