题目内容

()是Koa的路由中间件,负责处理URL映射。

A. koa-router
B. koa-static
C. koa-bodyparser
D. koa-ejs

查看答案
更多问题

()可以用来搭建静态资源服务器,实现复杂路由加载静态资源。

A. koa-router
B. koa-static
C. koa-bodyparser
D. koa-ejs

Context 中,()为koa的Request对象。

A. ctx.request
B. ctx.response
C. ctx.req
D. ctx.res

下列哪个语句用来启动路由()。

A. app.use()
B. app.use(router.router())
C. app.listen(3000)
D. app.use(router.routes());

Koa框架中,http://localhost:3000/newscontent?a=1,地址栏中参数a的值可以使用哪个语句获得()。

A. ctx.request.query
B. ctx.request.querystring
C. ctx.request.query.a
D. ctx.request.querystring.a

答案查题题库