2021年1月11日 星期一

重新踏入網頁開發 (6) - Express - 2

 Express - Route parameters

    Route parameters 可以用來擷取 URL 上的 value。
  • server.js
        import express from 'express'
    
        // 建立 express 這 module
        var app = express()
        const port = 8888
    
        // 回傳 { "userId": xxx, "bookId": xxx }
        app.get('/users/:userId/books/:bookId', function (req, res) {
            res.send(req.params)
        })
    
        // 可以用 "-" 分割,回傳 { "userId": xxx, "authorId": xxx, "bookId": xxx }
        app.get('/users/:userId-:authorId-:bookId', function (req, res) {
            res.send(req.params)
        })
    
        // 可以用 "." 分割,回傳 { "userId": xxx, "authorId": xxx, "bookId": xxx }
        app.get('/users/:userId.:authorId.:bookId', function (req, res) {
            res.send(req.params)
        })
    
        app.get('/users', function (req, res) {
            res.send("/users\n")
        })
    
        var server = app.listen(port, function () {
            var host = server.address().address
            var port = server.address().port
            console.log("Example app listening at http://%s:%s", host, port)
        })
  • Testing ( curl筆記 )
        $ curl -X GET http://localhost:8888/users/34/books/8989
        {"userId":"34","bookId":"8989"}
    
        $ curl -X GET http://localhost:8888/users/34-789-456
        {"userId":"34","authorId":"789","bookId":"456"}
    
        $ curl -X GET http://localhost:8888/users/34.123.258
        {"userId":"34","authorId":"123","bookId":"258"}
    
        $ curl -X GET http://localhost:8888/users/
        /users

 Express - Route handler

    Route handler 的 callback function 可以使用複數個,只要呼叫 next() 這個 function,便可執行下一個 callback function。
  • server.js
        import express from 'express'
    
        // 建立 express 這 module
        var app = express()
        const port = 8888
    
        // 可以塞複數個 callback, 只要確保你有傳和呼叫 next()
        app.get('/normal', function (req, res, next) {
            console.log('Hello from the first callback function!')
            next()
        }, function (req, res) {
            console.log('Hello from the second callback function!')
            res.send("Hi, this is the second callback function!\n")
            res.end()
        })
    
        // array 版
        function callbackA(req, res, next) {
            console.log('Hello from callbackA function!')
            next()
        }
        function callbackB(req, res, next) {
            console.log('Hello from callbackB function!')
            next()
        }
        function callbackC(req, res) {
            console.log('Hello from callbackC function!')
            res.send("Hi, this is callbackC!\n")
            res.end()
        }
    
        app.get('/array', [callbackA, callbackB, callbackC])
    
    
        var server = app.listen(port, function () {
            var host = server.address().address
            var port = server.address().port
            console.log("Example app listening at http://%s:%s", host, port)
        })
  • Testing - client( curl筆記 )
        $ curl -X GET http://localhost:8888/normal
        Hi, this is the second callback function!
        $ curl -X GET http://localhost:8888/array
        Hi, this is callbackC!
  • Testing - server( curl筆記 )
        $ node Learning/11.Express\&ES6/Route_handler.js 
        Example app listening at http://:::8888
        Hello from the first callback function!
        Hello from the second callback function!
        Hello from callbackA function!
        Hello from callbackB function!
        Hello from callbackC function!
上一篇 :
下一篇 :
參考資料 :

Related Posts:

  • 重新踏入網頁開發 (6) - Express - 3  Express - Middleware     Middleware 是會處理 req, res, next 三個物件並在 routing 時執行之 function,基本上就是 routing 時會處理的 callback function。是 Express 中蠻重要的概念。但用例子來理解比較容易。 import express from 'express' // 建立 express 這… Read More
  • 重新踏入網頁開發 (6) - Express - 5  Express - sendFile()     用 sendFile 把寫好的 HTML 傳出去,然後準備開始前端的開發。 import express from 'express' import path from 'path'; // 建立 express 這 module var app = express() const port = 8888 cons… Read More
  • 重新踏入網頁開發 (6) - Express - 2  Express - Route parameters     Route parameters 可以用來擷取 URL 上的 value。 server.js import express from 'express' // 建立 express 這 module var app = express() const port = 8888 // 回傳 { "… Read More
  • 重新踏入網頁開發 (7) - React  React - Introduction     A JavaScript library for building user interfaces. React 在 MVC 分類上屬於 View,也就是主要用來開發前端。比起直接使用 npx create-react-app,我這裡想紀錄一些較簡單且原始的 React Sample Code。 原本既有的程式碼 <!-- Some HT… Read More
  • 重新踏入網頁開發 (6) - Express - 4  Express - App v.s. Router     Express 通常都是用 app.Method 來做 request 的 routing。而 Express 4.0 加入的 router 則可視為可以掛載的迷你 app。 import express from 'express' var app = express() var router = express.Router… Read More

0 意見:

張貼留言

Popular Posts