環境
Node 8.0.0
koa 2.2.0
koa-router 7.1.1
const router = require('koa-router')()
router.prefix('/logs/mobile')
router.get('/:platform', function(cxt, next) {
console.log('params', this.params);
cxt.body = { error: 'test'}
})
module.exports = router
程式碼如上圖,然後造訪http://127.0.0.1:9901/logs/mobile/ios
成功取得了body的回傳值,
但是this.params
為undefined
##
你需要使用
ctx.params