node.js - koa2 如何獲取參數(shù)?
問題描述
環(huán)境 koa2 node7
// controllers/user.jsconst user = require(’../models/user’);const getUserInfo = async (ctx) => { const id = this.params[’id’]; this.body = await user.getUserById(id);};module.exports = { auth: (router) => { router.get(’/user/:id’, getUserInfo); }};
斷點(diǎn)調(diào)試可以查到 params的 id 參數(shù)
但繼續(xù)執(zhí)行會(huì)報(bào)錯(cuò),
參考文章:學(xué)習(xí)的博客
補(bǔ)充:我不會(huì)用 Koa2 的 context。 下面是我打印 ctx 為一個(gè) 空數(shù)組
終結(jié):感謝 @soonfy @魚香肉絲蓋飯 最終解決方案是再次看文檔發(fā)現(xiàn) 如使用 async/await koa-router 需要 7.0.1
cnpm i koa-router@next --save
問題解答
回答1:ctx封裝req和res,你需要的可能是req.params.id。
soonfy
回答2:是這樣獲取:
ctx.params.id
相關(guān)文章:
1. javascript - 如何用最快的速度C#或Python開發(fā)一個(gè)桌面應(yīng)用程序來訪問我的網(wǎng)站?2. javascript - 項(xiàng)目用IE瀏覽器打開修改前端內(nèi)容,后臺(tái)數(shù)據(jù)修改了,但是前端頁面內(nèi)容不變,用谷歌瀏覽器測(cè)試前端頁面可以刷新,求大神解決。3. javascript - 看一些高手寫代碼單獨(dú)用 “$”和“_” 來表示變量,什么時(shí)候單獨(dú)使用這兩個(gè)字符?4. 前端 - 使用vue2服務(wù)端渲染的時(shí)候,如何在服務(wù)端請(qǐng)求數(shù)據(jù),然后給vue渲染5. mysql 存儲(chǔ)過程 和 函數(shù)有什么用??6. python - 關(guān)于beautifulsoup獲取文檔內(nèi)容7. java - springMVC配置的controller無法返回jsp文件8. html5 - video ios不能播放怎么辦?9. javascript - weex和node,js到底是怎樣一個(gè)關(guān)系呢?10. mysql - jdbc的問題
