app.get('/hello', function (req, res) { res.send('Hello World!'); }); hapi: server.route({ method: 'GET', path:'/hello', handler: (request, h) => { return ...
確定! 回上一頁