完成基本的搜索功能

This commit is contained in:
2023-12-17 04:43:10 +00:00
parent ca50995b3c
commit 8d75e8bc86
8 changed files with 258 additions and 7 deletions

View File

@ -199,6 +199,10 @@ app.get('/buy', (req, res) => {
res.sendFile(join(__dirname, 'buy.html'));
});
app.get('/show', (req, res) => {
res.sendFile(join(__dirname, 'show.html'));
});
server.listen(3000, () => {
console.log('server running at http://localhost:3000');
});