Fetching...

-

Just a minute...

NodeJs框架 Koa

一、Koa简介

文档地址:https://koa.bootcss.com
是一个新的 web 框架,由 Express 幕后的原班人马打造, 致力于成为 web 应用和 API 开发领域中的一个更小、更富有表现力、更健壮的基石。 通过利用 async 函数,Koa 帮你丢弃回调函数,并有力地增强错误处理。 Koa 并没有捆绑任何中间件, 而是提供了一套优雅的方法,帮助您快速而愉快地编写服务端应用程序。

二、Koa之hello world

(1)新建koa-demo文件夹,初始化package.json

1
npm init -y

(2)安装Koa模块

1
npm i koa -S

(3)在项目根目录新建app.js,app.js代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
// 导入koa模块
const Koa = require('koa');
// 创建koa的实例app
const app = new Koa();

app.use(async ctx => {
ctx.body = "Hello World"
})
// 监听端口
app.listen(3000, () => {
console.log("服务器已启动,http://localhost:3000");
})

(3)使用node命令启动服务器,并访问本地地址端口3000

1
node app

三、服务器自动重新部署

(1)、 nodejs开发辅助工具

修改代码后,需要重新启动 Koa应用,所做的修改才能生效。若之后的每次代码修改都要重复这样的操作,势必会影响开发效率,使用了nodemon后,它会监测项目中的所有文件,一旦发现文件有改动,会自动重启应用

(2)全局安装nodemon

1
npm i nodemon -g

(3)启动服务的时候用nodemon app.js 代替node app.js

1
nodemon app

四、Koa中间件

(1)什么是koa中间件

      koa对网络请求采用了中间件的形式处理,中间件可以介入请求和相应的处理,是一个轻量级的模块,每个中间负责完成某个特定的功能。中间件的通过next函数联系,执行next()后会将控制权交给下一个中间件,如果没有中间件没有执行next后将会沿路折返,将控制权交换给前一个中间件。
      每个中间件都是一个函数(不是函数将报错),接收两个参数,第一个是上下文对象,另一个是函数

(2)中间件的使用

1
2
3
4
5
6
app.use((ctx, next) => {
// 在ctx上放入username,后面的所有请求的ctx里都会有username这个变量
ctx.username = '我是Grayly';
// 处理完之后放行,不使用next()的话,程序会被挂起来不动了
next();
})

(3)中间件有先后顺序

五、Koa路由配置

(1)安装koa-router

1
npm i koa-router -D

(2)导入koa-router模块并实例化

1
2
3
4
// 导入koa-router模块
const Router = require('koa-router');
// 创建koa-router的实例router
const router = new Router();

(3)配置,并访问本地地址端口3000

1
2
3
4
router.get('/', ctx => {
ctx.body = "哈哈哈"
})
app.use(router.routes());

(4)koa-router 提供了 .get、.post、.put 和 .del 接口来处理各种请求,但实际业务上,我们大部分只会接触到 POST 和 GET,所以接下来只针对这两种请求类型来说明。

(4.1)get:用于接收GET请求

1
2
3
4
router.get('/get', ctx => {
ctx.body = "哈哈哈"
})
app.use(router.routes());

(4.2)post:用于接收POST请求

1
2
3
4
router.post('/', ctx => {
ctx.body = "哈哈哈"
})
app.use(router.routes());

(4.3)all:用于接收GET与POST请求

1
2
3
4
router.all('/', ctx => {
ctx.body = "哈哈哈"
})
app.use(router.routes());

(5)获取请求参数

(5.1)获取get请求参数:ctx.query

1
2
3
router.get('/get', ctx => {
ctx.body = ctx.query
})

(5.2)获取post请求参数:ctx.request.body

当用 post 方式请求时,我们会遇到一个问题:post 请求通常都会通过表单或 JSON 形式发送,而无论是 Node 还是 Koa,都 没有提供 解析 post 请求参数的功能。
获取post请求需要使用koa-body模块

1
npm i koa-body --save
1
2
3
router.get('/get', ctx => {
ctx.body = ctx.request.body
})

(5.3)使用中间件封装请求参数:把get请求参数和post请求参数都放入params对象

1
2
3
4
5
6
7
8
app.use((ctx, next) => {
ctx.params = {
...ctx.query,
...ctx.request.body
}
next();
});

六、设置静态目录koa-static

(1)在目录中创建目录public,在public下创建文件demo.html,访问http://localhost:3000/public/demo.html是无法访问得到,因为我们还没有设置静态资源目录,设置静态资源目录要用到koa-static模块

(2)安装koa-static

1
npm i koa-static -D

(3)在app.js里加入如下代码

1
2
const koaStatic = require('koa-static');
app.use(koaStatic(__dirname + '/public'));

七、使用模板引擎{koa-views

(1)安装koa-views

1
2
npm i koa-views -D
npm i underscore -D

(2)模板编写:在根目录创建views目录,在views目录下创建tpl.html,代码如下

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h3><%=title %></h3>
</body>
</html>

(3)在app.js配置模板引擎中间件

1
2
3
4
5
6
7
const path = require('path');
const views = require("koa-views");
app.use(views(path.join(__dirname, "views"), {
map: {
html: 'underscore'
}
}));

(4)使用模板引擎

1
2
3
4
5
router.get("/html", async ctx => {
await ctx.render("tpl", {
title: "Grayly"
})
})

八、Vue SSR(vue服务器渲染)

(1)安装vue和vue服务器渲染插件

1
npm install vue vue-server-renderer -S

(2)渲染

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
router.get('/ssr', async ctx => {
1 步:创建一个 Vue 实例
const Vue = require('vue')
const app = new Vue({
template: `<div>Hello World</div>`
})
2 步:创建一个 renderer
const renderer = require('vue-server-renderer').createRenderer();
3 步:将 Vue 实例渲染为 HTML
renderer.renderToString(app, (err, html) => {
if (err) throw err
console.log(html)
ctx.body = html;
// => <div data-server-rendered="true">Hello World</div>
})
})

九、Koa跨域设置

使用中间件编写跨域设置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
app.use((ctx, next) => {
// 设置允许跨域
ctx.set("Access-Control-Allow-Origin", "*");
ctx.set("Access-Control-Allow-Methods", "PUT, POST, GET, DELETE, OPTIONS");
// 请求头设置
ctx.set(
"Access-Control-Allow-Headers",
`Content-Type, Content-Length, Authorization, Accept, X-Requested-With , yourHeaderFeild,x-token,sessionToken,token`
);
if (ctx.method == "OPTIONS") {
ctx.body = 200;
} else {
next();
}
})
Related post
Comment
Share
  • nginx-use

    nginx使用教程本nginx是在Ubuntu20.04系统下运行的nginx version: nginx/1.18.0 (Ubuntu) 安装:安装依赖: 首先使用dpkg命令查看自己需要的软件是否安装1dpkg -l | gre...

    nginx-use
  • nlp

    pytorch有关pytorch的学习网站:https://pytorch-cn.readthedocs.io/zh/latest/另外一些有关pytorch的知识点如下 PyTorch中的Tensor张量1.Tensor张量我们可以...

    nlp
  • tomcat

    tomcat
  • hello hexo

    本篇文章介绍了如何使用hexo博客以及配置相关的内容(包括统计插件,评论插件等): 安装并发布hexo安装hexo:npm install -g hexo-cli检查是否安装成功:hexo -v初始化网址:hexo init接着输入 ...

    hello hexo
  • smartmontools

    ##引言 一般在Windows电脑上,有丰富的硬盘S.M.A.R.T状态检测工具。但在封闭为主的macOS生态里,我们比较难找到一款免费且实用的S.M.A.R.T状态检测工具,但随着我更多的了解,我找到了一款命令行检测软件smartm...

    smartmontools
  • m1-macbook-use

    JDK 配置目前 Zulu JDK 支持 M1芯片,下载:下载地址下载后点击安装,在控制台输入java -version 1234java -versionopenjdk version "16.0.2" 2021...

    m1-macbook-use
  • springboot-use

    后端学习日志:SpringBootMVC的结构解读:对于SpringBoot来说一个高内聚低耦合的框架必须要遵守一个能够承受得住较大量开发的逻辑难度,有些开发者是单人开发,所面临的主要开发问题是如何记住自己写过的每一个功能,并且某些功...

    springboot-use
  • git-use

    在Mac的终端上输入git检测是否安装git,如果没有,点击弹出的“安装”按钮。安装完成之后,在终端输入 git –version 查看版本信息12git --version 创建一个全局用户名、全局邮箱作为配置信息12git con...

    git-use
  • ai-study

    关于ai学习的一些历程

    ai-study
  • ai-environment

    这个文档主要与pytorch等机器学习等python或者其他库等配置方法,和在服务器中的使用方法 用nvidia-smi来查看显卡的信息 接着用yum来安装python 安装annocoda环境,先下载包,然后bash即可,会自动帮你...

    ai-environment