- Koa.js 教程
- Koa.js - 首页
- Koa.js - 概述
- Koa.js - 环境
- Koa.js - Hello World
- Koa.js - 生成器
- Koa.js - 路由
- Koa.js - URL 构建
- Koa.js - HTTP 方法
- Koa.js - 请求对象
- Koa.js - 响应对象
- Koa.js - 重定向
- Koa.js - 错误处理
- Koa.js - 级联
- Koa.js - 模板
- Koa.js - 表单数据
- Koa.js - 文件上传
- Koa.js - 静态文件
- Koa.js - Cookie
- Koa.js - 会话
- Koa.js - 身份验证
- Koa.js - 压缩
- Koa.js - 缓存
- Koa.js - 数据库
- Koa.js - RESTful API
- Koa.js - 日志记录
- Koa.js - 脚手架
- Koa.js - 资源
- Koa.js 有用资源
- Koa.js - 快速指南
- Koa.js - 有用资源
- Koa.js - 讨论
Koa.js - RESTful API
要创建移动应用程序、单页应用程序、使用 AJAX 调用并向客户端提供数据,您需要一个 API。一种关于如何构建和命名这些 API 和端点的流行架构风格称为REST(表述性状态转移)。HTTP 1.1 在设计时就考虑了 REST 原则。REST 由Roy Fielding于 2000 年在其论文 Fielding Dissertations 中提出。
RESTful URI 和方法为我们提供了处理请求所需的大部分信息。下表总结了如何使用各种动词以及如何命名 URI。我们将在最后创建一个电影 API,因此让我们讨论一下它的结构。
方法 | URI | 详情 | 功能 |
---|---|---|---|
GET | /movies | 安全,可缓存 | 获取所有电影及其详细信息的列表 |
GET | /movies/1234 | 安全,可缓存 | 获取电影 ID 1234 的详细信息 |
POST | /movies | N/A | 创建一部包含所提供详细信息的新电影。响应包含此新创建资源的 URI。 |
PUT | /movies/1234 | 幂等 | 修改电影 ID 1234(如果不存在则创建一个)。响应包含此新创建资源的 URI。 |
DELETE | /movies/1234 | 幂等 | 如果存在,应删除电影 ID 1234。响应应包含请求的状态。 |
DELETE 或 PUT | /movies | 无效 | 应无效。DELETE 和 PUT 应指定它们正在处理哪个资源。 |
现在让我们在 Koa 中创建这个 API。我们将使用 JSON 作为我们的传输数据格式,因为它易于在 JavaScript 中使用并且具有许多其他好处。将您的 index.js 文件替换为以下内容 -
INDEX.JS
var koa = require('koa'); var router = require('koa-router'); var bodyParser = require('koa-body'); var app = koa(); //Set up body parsing middleware app.use(bodyParser({ formidable:{uploadDir: './uploads'}, multipart: true, urlencoded: true })); //Require the Router we defined in movies.js var movies = require('./movies.js'); //Use the Router on the sub route /movies app.use(movies.routes()); app.listen(3000);
现在我们已经设置了应用程序,让我们专注于创建 API。首先设置 movies.js 文件。我们没有使用数据库来存储电影,而是将它们存储在内存中,因此每次服务器重新启动时,我们添加的电影都会消失。这可以使用数据库或文件(使用节点 fs 模块)轻松地模拟。
导入 koa-router,创建一个 Router 并使用 module.exports 导出它。
var Router = require('koa-router'); var router = Router({ prefix: '/movies' }); //Prefixed all routes with /movies var movies = [ {id: 101, name: "Fight Club", year: 1999, rating: 8.1}, {id: 102, name: "Inception", year: 2010, rating: 8.7}, {id: 103, name: "The Dark Knight", year: 2008, rating: 9}, {id: 104, name: "12 Angry Men", year: 1957, rating: 8.9} ]; //Routes will go here module.exports = router;
GET 路由
定义获取所有电影的 GET 路由。
router.get('/', sendMovies); function *sendMovies(next){ this.body = movies; yield next; }
就是这样。要测试它是否正常工作,请运行您的应用程序,然后打开您的终端并输入 -
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET localhost:3000/movies
您将获得以下响应 -
[{"id":101,"name":"Fight Club","year":1999,"rating":8.1},{"id":102,"name":"Inception","year":2010,"rating":8.7}, {"id":103,"name":"The Dark Knight","year":2008,"rating":9},{"id":104,"name":"12 Angry Men","year":1957,"rating":8.9}]
我们有一个获取所有电影的路由。现在让我们创建一个路由来根据其 ID 获取特定电影。
router.get('/:id([0-9]{3,})', sendMovieWithId); function *sendMovieWithId(next){ var ctx = this; var currMovie = movies.filter(function(movie){ if(movie.id == ctx.params.id){ return true; } }); if(currMovie.length == 1){ this.body = currMovie[0]; } else { this.response.status = 404;//Set status to 404 as movie was not found this.body = {message: "Not Found"}; } yield next; }
这将根据我们提供的 ID 获取电影。要测试这一点,请在您的终端中使用以下命令。
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET localhost:3000/movies/101
您将获得以下响应 -
{"id":101,"name":"Fight Club","year":1999,"rating":8.1}
如果您访问无效路由,它将产生无法获取错误,而如果您访问具有不存在 ID 的有效路由,它将产生 404 错误。
我们完成了 GET 路由。现在,让我们继续 POST 路由。
POST 路由
使用以下路由来处理 POST 数据。
router.post('/', addNewMovie); function *addNewMovie(next){ //Check if all fields are provided and are valid: if(!this.request.body.name || !this.request.body.year.toString().match(/^[0-9]{4}$/g) || !this.request.body.rating.toString().match(/^[0-9]\.[0-9]$/g)){ this.response.status = 400; this.body = {message: "Bad Request"}; } else { var newId = movies[movies.length-1].id+1; movies.push({ id: newId, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }); this.body = {message: "New movie created.", location: "/movies/" + newId}; } yield next; }
这将创建一个新的电影并将其存储在 movies 变量中。要测试此路由,请在您的终端中输入以下内容 -
curl -X POST --data "name = Toy%20story&year = 1995&rating = 8.5" https://127.0.0.1:3000/movies
您将获得以下响应 -
{"message":"New movie created.","location":"/movies/105"}
要测试这是否已添加到 movies 对象中,请再次对 /movies/105 运行 get 请求。您将获得以下响应 -
{"id":105,"name":"Toy story","year":"1995","rating":"8.5"}
让我们继续创建 PUT 和 DELETE 路由。
PUT 路由
PUT 路由与 POST 路由几乎完全相同。我们将为要更新/创建的对象指定 ID。以以下方式创建路由 -
router.put('/:id', updateMovieWithId); function *updateMovieWithId(next){ //Check if all fields are provided and are valid: if(!this.request.body.name || !this.request.body.year.toString().match(/^[0-9]{4}$/g) || !this.request.body.rating.toString().match(/^[0-9]\.[0-9]$/g) || !this.params.id.toString().match(/^[0-9]{3,}$/g)){ this.response.status = 400; this.body = {message: "Bad Request"}; } else { //Gets us the index of movie with given id. var updateIndex = movies.map(function(movie){ return movie.id; }).indexOf(parseInt(this.params.id)); if(updateIndex === -1){ //Movie not found, create new movies.push({ id: this.params.id, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }); this.body = {message: "New movie created.", location: "/movies/" + this.params.id}; } else { //Update existing movie movies[updateIndex] = { id: this.params.id, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }; this.body = {message: "Movie id " + this.params.id + " updated.", location: "/movies/" + this.params.id}; } } }
此路由将执行我们在上表中指定的函数。如果对象存在,它将使用新详细信息更新它。如果不存在,它将创建一个新对象。要测试此路由,请使用以下 curl 命令。这将更新现有电影。要创建一部新电影,只需将 ID 更改为不存在的 ID。
curl -X PUT --data "name = Toy%20story&year = 1995&rating = 8.5" https://127.0.0.1:3000/movies/101
响应
{"message":"Movie id 101 updated.","location":"/movies/101"}
DELETE 路由
使用以下代码创建删除路由。
router.delete('/:id', deleteMovieWithId); function *deleteMovieWithId(next){ var removeIndex = movies.map(function(movie){ return movie.id; }).indexOf(this.params.id); //Gets us the index of movie with given id. if(removeIndex === -1){ this.body = {message: "Not found"}; } else { movies.splice(removeIndex, 1); this.body = {message: "Movie id " + this.params.id + " removed."}; } }
以与其他路由相同的方式测试此路由。成功删除后(例如 ID 105),您将获得 -
{message: "Movie id 105 removed."}
最后,我们的 movies.js 文件如下所示 -
var Router = require('koa-router'); var router = Router({ prefix: '/movies' }); //Prefixed all routes with /movies var movies = [ {id: 101, name: "Fight Club", year: 1999, rating: 8.1}, {id: 102, name: "Inception", year: 2010, rating: 8.7}, {id: 103, name: "The Dark Knight", year: 2008, rating: 9}, {id: 104, name: "12 Angry Men", year: 1957, rating: 8.9} ]; //Routes will go here router.get('/', sendMovies); router.get('/:id([0-9]{3,})', sendMovieWithId); router.post('/', addNewMovie); router.put('/:id', updateMovieWithId); router.delete('/:id', deleteMovieWithId); function *deleteMovieWithId(next){ var removeIndex = movies.map(function(movie){ return movie.id; }).indexOf(this.params.id); //Gets us the index of movie with given id. if(removeIndex === -1){ this.body = {message: "Not found"}; } else { movies.splice(removeIndex, 1); this.body = {message: "Movie id " + this.params.id + " removed."}; } } function *updateMovieWithId(next) { //Check if all fields are provided and are valid: if(!this.request.body.name || !this.request.body.year.toString().match(/^[0-9]{4}$/g) || !this.request.body.rating.toString().match(/^[0-9]\.[0-9]$/g) || !this.params.id.toString().match(/^[0-9]{3,}$/g)){ this.response.status = 400; this.body = {message: "Bad Request"}; } else { //Gets us the index of movie with given id. var updateIndex = movies.map(function(movie){ return movie.id; }).indexOf(parseInt(this.params.id)); if(updateIndex === -1){ //Movie not found, create new movies.push({ id: this.params.id, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }); this.body = {message: "New movie created.", location: "/movies/" + this.params.id}; } else { //Update existing movie movies[updateIndex] = { id: this.params.id, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }; this.body = {message: "Movie id " + this.params.id + " updated.", location: "/movies/" + this.params.id}; } } } function *addNewMovie(next){ //Check if all fields are provided and are valid: if(!this.request.body.name || !this.request.body.year.toString().match(/^[0-9]{4}$/g) || !this.request.body.rating.toString().match(/^[0-9]\.[0-9]$/g)){ this.response.status = 400; this.body = {message: "Bad Request"}; } else { var newId = movies[movies.length-1].id+1; movies.push({ id: newId, name: this.request.body.name, year: this.request.body.year, rating: this.request.body.rating }); this.body = {message: "New movie created.", location: "/movies/" + newId}; } yield next; } function *sendMovies(next){ this.body = movies; yield next; } function *sendMovieWithId(next){ var ctx = this var currMovie = movies.filter(function(movie){ if(movie.id == ctx.params.id){ return true; } }); if(currMovie.length == 1){ this.body = currMovie[0]; } else { this.response.status = 404;//Set status to 404 as movie was not found this.body = {message: "Not Found"}; } yield next; } module.exports = router;
这完成了我们的 REST API。现在,您可以使用这种简单的架构风格和 Koa 创建更复杂的应用程序。