0
我正在運行使用nodejs的應用程序,它正在端口8000上偵聽,所以我的網址欄是ip:8000。我有一個AJAX調用PHP文件:運行PHP - 使用節點實例和端口時
$.ajax({
url: './chat/store.php',
type: 'post',
data: {message: message},
error: function() {
console.log('Store not working...');
}
但PHP將無法運行,因爲在該節點的實例中運行,所以有什麼我可以做,使PHP運行在訪問IP:8000網址是什麼?