に戻らない私は、次の特急サーバーのセットアップがあります。私はlocalhostのヒットExpressサーバのURLリクエストを取得するために耳を傾け、/常に
const express = require('express');
const path = require('path');
const app = express();
app.use(express.static(path.join(__dirname, 'build')));
app.get('/', function (req, res) {
console.log('/*');
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.get('/test', function (req, res) {
console.log('test');
//res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.listen(9000);
毎回:9000 /テストを、それはまだルートに連れて行きます「/」。 私は静的宣言の前にapp.getコードを置こうとしましたが、実際には違いはないと思います。なぜこれが起こっているのか?
私は '/'を持っていて、 '/ *'で試してみましたが、console.logにはそれがあります。なぜ私はそれが動作していないのか分からない – Arihant