From a598b889fc17bcd3b3ecf3fc835c90561c0ecc33 Mon Sep 17 00:00:00 2001 From: "shuang.kou" Date: Thu, 26 Mar 2020 10:26:36 +0800 Subject: [PATCH] [refractor]do something --- README.md | 6 +++--- .../operating-system/linux.md | 0 docs/system-design/restful-api.md | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) rename "docs/operating-system/\345\220\216\347\253\257\347\250\213\345\272\217\345\221\230\345\277\205\345\244\207\347\232\204Linux\345\237\272\347\241\200\347\237\245\350\257\206.md" => docs/operating-system/linux.md (100%) diff --git a/README.md b/README.md index 4f0f377f..aeebc33c 100644 --- a/README.md +++ b/README.md @@ -155,12 +155,12 @@ Github用户如果访问速度缓慢的话,可以转移到[码云](https://git ## 操作系统 -操作系统相关概念总结 +[最硬核的操作系统常见面试题总结!](docs/operating-system/basis.md) ### Linux -* [后端程序员必备的 Linux 基础知识](docs/operating-system/后端程序员必备的Linux基础知识.md) -* [Shell 编程入门](docs/operating-system/Shell.md) +* [后端程序员必备的 Linux 基础知识](docs/operating-system/linux.md) +* [Shell 编程入门](docs/operating-system/shell.md) ## 数据结构与算法 diff --git "a/docs/operating-system/\345\220\216\347\253\257\347\250\213\345\272\217\345\221\230\345\277\205\345\244\207\347\232\204Linux\345\237\272\347\241\200\347\237\245\350\257\206.md" b/docs/operating-system/linux.md similarity index 100% rename from "docs/operating-system/\345\220\216\347\253\257\347\250\213\345\272\217\345\221\230\345\277\205\345\244\207\347\232\204Linux\345\237\272\347\241\200\347\237\245\350\257\206.md" rename to docs/operating-system/linux.md diff --git a/docs/system-design/restful-api.md b/docs/system-design/restful-api.md index 75cf588a..86df0b8f 100644 --- a/docs/system-design/restful-api.md +++ b/docs/system-design/restful-api.md @@ -88,14 +88,14 @@ GET /classes?page=1&size=10 //指定第1页,每页10个数据 **状态码范围:** -| 2xx:成功 | 3xx:重定向 | 4xx:客户端错误 | 5xx:服务器错误 | | -| --------- | -------------- | ---------------- | --------------- | ---- | -| 200 成功 | 301 永久重定向 | 400 错误请求 | 500 服务器错误 | | -| 201 创建 | 304 资源未修改 | 401 未授权 | 502 网关错误 | | -| | | 403 禁止访问 | 504 网关超时 | | -| | | 404 未找到 | | | -| | | 405 请求方法不对 | | | -| | | | | | +| 2xx:成功 | 3xx:重定向 | 4xx:客户端错误 | 5xx:服务器错误 | +| --------- | -------------- | ---------------- | --------------- | +| 200 成功 | 301 永久重定向 | 400 错误请求 | 500 服务器错误 | +| 201 创建 | 304 资源未修改 | 401 未授权 | 502 网关错误 | +| | | 403 禁止访问 | 504 网关超时 | +| | | 404 未找到 | | +| | | 405 请求方法不对 | | + ### 三 HATEOAS -- GitLab