0
在我server.ts文件中的行爲什麼express.static工作,app.use但與app.get
app.get('/example', express.static('somefolder'));
給了我404,而
app.use('/example', express.static('somefolder'));
正確的服務作爲對'myhost/example'請求的響應,'somefolder'中的'index.html'。
根據快速文檔,這些應該在GET請求的情況下表現完全相同。爲什麼一個人工作,另一個不工作?