const express = require('express') const app = express() app.use(express.json()) app.get('/otherget', (req,res) => { res.send('other get'); }) ...
確定! 回上一頁