ノード アプリの高速ルートが 404 エラーを返しています。ローカルでは動作しますが、運用サーバーでは 404 エラーが返されます (アップロードする前に AJAX URL を運用サーバーの URL に変更したことに注意してください)。私のコード:
サーバー.js:
const path = require('path');
const http = require('http');
const express = require('express');
const publicPath = path.join(__dirname, '/../public');
const port = process.env.PORT || 8080;
var app = express();
var server = http.createServer(app);
app.use(express.static(publicPath));
app.post('/active-screens', function(req, res) {
res.send('route works!');
});
server.listen(port, () => {
console.log(`Server is up on port ${port}`);
});
index.js:
function checkRoute(){
$.ajax({
url: "http://localhost:8080/active-screens",
type: "POST"
})
.success(function(data){
console.log(data);
});
}
checkRoute();