koa,是基于Node.js 平台的下一代的web开发框架。
是由Express原班人马打造,致力于成为一个更小的,更加富有表现力的,web框架。
使用koa编写web应用,可以免除重复的回调函数嵌套,并极大的提高错误处理的效率,
koa框架不仅仅在内核方法中可以绑定任何中间件,它仅仅提供了一个轻量级,优雅的函数库,思路和express相差不少。
安装koa框架和安装之前的模块一样。
使用如下命令安装
npm install --save koa
使用save参数,表明将会自动修改package.json 文件。自动添加依赖项
输入如下的代码,运行hello world
const koa = require("koa");
const app = new koa();
// 配置中间件
app.use(async (ctx) => {
ctx.body = "hello world";
})
// 监听端口
app.listen(3000);
运行文件
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
输出结果如下
由于js是单线程的,所以,使用回调函数处理异步等问题。
const koa = require("koa");
const app = new koa();
function getData(callback){
setTimeout(function () {
var name = "ming";
callback(name);
}, 1000)
}
// 从外部获取异步方法里的数据
getData(function (data) {
console.log(data)
})
// 监听端口
app.listen(3000);
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
ming
const koa = require("koa");
const app = new koa();
// promise 处理异步
// resolve 成功的回调函数
// reject 失败的回调函数
var p = new Promise(function (resolve, reject) {
setTimeout(function () {
var name = "张三";
}, 1000)
})
// 获取异步的结果
p.then((data) => {
console.log(data);
})
// 监听端口
app.listen(3000);
运行结果如下
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
ming
其中async是异步的缩写,await被认为是async wait的缩写,所以,async用于申明一个函数为异步的,await用于等待一个异步方法执行完成。
async 让方法变成异步
await 等待异步方法执行完成。
这里使用实际的例子,更好理解。
function getData(){
return "ming";
}
console,log(getData())
输出结果
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
ming
const koa = require("koa");
const app = new koa();
// promise 处理异步
// resolve 成功的回调函数
// reject 失败的回调函数
async function getData(){
return "这是一个数据";
}
console.log(getData());
// 监听端口
app.listen(3000);
其中promise为一个异步的数据
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
Promise { '这是一个数据' }
const koa = require("koa");
const app = new koa();
// promise 处理异步
// resolve 成功的回调函数
// reject 失败的回调函数
async function getData(){
return "这是一个数据";
}
var p = getData();
p.then((data) => {
console.log(data);
})
// 监听端口
app.listen(3000);
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
这是一个数据
使用await方法获取到异步的信息
const koa = require("koa");
const app = new koa();
// promise 处理异步
// resolve 成功的回调函数
// reject 失败的回调函数
async function getData(){
return "这是一个数据";
}
async function test(){
// 此时运行的为,发现该函数是一个异步函数,遇到了await进入等待状态,等待getData执行完毕,再往下执行
var d = await getData();
console.log(d)
}
test()
// 监听端口
app.listen(3000);
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
这是一个数据
路由是根据不同的url地址,加载不同页面实现不同的功能。
npm install --save koa-router
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
router.get("/", (ctx, next) => {
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
运行结果如下所示
其中可以添加async作为异步方法来调用
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
router.get("/", async (ctx, next) => {
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
通过router获取路由的参数值
链接为
http://localhost:3000/?ming=3
代码为
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
router.get("/", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.query)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
访问的结果是
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
[Object: null prototype] { ming: '3' }
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
ming=3
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
router.get("/", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.querystring)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
// 配置动态路由
router.get("/:id", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.params)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
访问的链接为
http://localhost:3000/ming
输出的内容
PS C:\Users\Administrator\IdeaProjects\untitled3> node ./ming.js
{ id: 'ming' }
这里配置koa的中间件
中间件就是匹配路由完成做的一系列的操作,把它称之为中间件。
中间件的功能主要有:
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
// 中间件
app.use(async (ctx) => {
ctx.body = "这是一个中间件";
})
// 配置动态路由
router.get("/:id", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.params)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
运行结果
此时访问任何页面出现的都是这个内容,
因为访问的时候,没有加上next,此时造成的无法进入到匹配路由的阶段。
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
// 中间件
app.use(async (ctx, next) => {
ctx.body = "这是一个中间件";
// 进入路由匹配
next();
})
// 配置动态路由
router.get("/:id", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.params)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
由于js是单线程的,此时需要添加await,进行访问。
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
// 中间件
app.use(async (ctx, next) => {
ctx.body = "这是一个中间件";
// 进入路由匹配
await next();
})
// 配置动态路由
router.get("/:id", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.params)
ctx.body = "ming";
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
路由由于没有await next,造成路由匹配到以后就不再匹配,所以添加next,能把两个相同的路由按照顺序,匹配完成。
const koa = require("koa");
const app = new koa();
const router = require("koa-router")();
// 中间件
app.use(async (ctx, next) => {
ctx.body = "这是一个中间件";
// 进入路由匹配
await next();
})
// 配置动态路由
router.get("/:id", async (ctx, next) => {
// query 返回的是格式化好的参数对象
// querystring 返回的是请求的字符串
console.log(ctx.params)
ctx.body = "ming";
await next();
})
router.get("/:id", async (ctx, next) => {
// 此时匹配到这点
await next();
})
// 启动路由
app.use(router.routes());
// 设置响应头
app.use(router.allowedMethods());
// 监听端口
app.listen(3000);
一般是洋葱模型,作为中间件的执行顺序。
// 中间件
app.use(async (ctx, next) => {
console.log("这是一个中间件");
// 进入洋葱
next()
// 出洋葱
if(ctx.status = 404){
ctx.status = 404;
ctx.body = "这是一个 404 页面";
}
})
例如进行静态文件托管的时候,使用的是第三方中间件
const static = require('koa-static');
const staticPath = './static';
app.use(static(
path.join(__dirname, staticPath);
))
const bodyParser = require('koa-bodyparser');
app.use(bodyParser());
这样就完成了静态文件托管
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。