forked from greyli/helloflask
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add 2 more erratas * Add more erratas
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
如果你发现了书中的错误,欢迎提交PR更新勘误文件;你也可以创建Issue指出相关错误,或是通过Email与我联系([[email protected]](mailto:[email protected])),谢谢! | ||
|
||
最后更新:2019/3/7 | ||
最后更新:2019/3/8 | ||
|
||
## 勘误贡献者列表 | ||
|
||
|
@@ -70,6 +70,7 @@ | |
| 2.2 P30 请求报文示例表格下方正文 | 如果 URL 中包含查询字符串,或是提交了表单,那么报文主体将会是查询字符串和表单数据。 | 如果提交了表单,那么报文主体将会是表单数据(查询字符串通常会直接通过 URL 传递)。 | 19.2.2 | | ||
| 2.2 P31 命令行输出 | /hello | /hello?name=Grey | 19.2.2 | | ||
| 2.2.1 P31 表2-3左侧下面的两行 | | POST对应的说明列原文为“传输数据”,修改为“创建或更新资源”;PUT对应的说明列原文为“传输文件”,修改为“创建或替换资源” | 改进 18.11.18 | | ||
| 2.2.3.1 P34 最下方终端输出第四行的Rule | `/goback/<int:age>` | `/goback/<int:year>` | 笔误 19.03.07 | | ||
| 2.2.3.3 P36 表2-6后第1个代码块 | `'goback/<int:year>'` | `'/goback/<int:year>'` | 笔误。 18.9.28 | | ||
| 2.3.1 P40 第3个代码块 | `{'Location', 'http://www.example.com'}` | `{'Location': 'http://www.example.com'}` | 笔误。返回值中字典里的符号出错 | | ||
| 2.3.2 P44 HTML小节的最后1行 | HTTP | HTML | 笔误 | | ||
|
@@ -79,6 +80,7 @@ | |
| 2.3.4.2 P51 图2-12后第1个代码块 | | 第9行及以下均应向左缩进4个空格 | 排版错误 18.10.18 | | ||
| 2.3.4.2 P52 图2-13后第1段第2行 | logged-in | logged_in | 排版错误 18.11.8 | | ||
| 2.3.4.2 P52 代码清单2-6下第2段第2行 | logged-in | logged_in | 排版错误 18.11.8 | | ||
| 2.5.1 P57 最后一个代码块中的URL规则 | /do_something | /do-something | 与源码不符 19.03.08 | | ||
| 2.5.4.1.(2) P67 “攻击示例”小节第3段文字第2行 | 设为 “';drop table users; --” | 设为 “';drop table students; --” | 笔误 18.11.2 | | ||
| 4.2.3 P110 代码清单4-2最后1行 | `'login.html'` | `'basic.html'` | 笔误 18.9.28 | | ||
| 4.3.1 P112 第1个代码块后第1行 | 3000 | 2000 | 笔误,不同的浏览器对于URL有不同的长度限制,此处长度为“最佳实践” | | ||
|
@@ -288,11 +290,14 @@ def validate_username(self, field): | |
| 1.3.1 P14 ”Run,Flask,Run“小节第1个代码块最后1行 | | 出现多余的缩进 | 排版错误 | | ||
| 1.3.1.3 P17 配置步骤4 | 下列选项 | 下拉选项 | 笔误 | | ||
| 1.3.3 P18 "1.3.3"小节第1行 | Enviroment | Environment | 拼写错误 | | ||
| 1.8 P24 代码清单1-4 | 缺少下文中提到的文档字符串 | 见Github源码 | 19.03.06 | | ||
| 2.2.2 P32 提示段落第一、三行 | MutliDict | MultiDict | 笔误 19.03.06 | | ||
| 2.2.2 P33 正文第一行 | MutliDict | MultiDict | 笔误 18.12.24 | | ||
| 2.2.2 P33 图 2-4 上面一行 | requset | request | 笔误 18.12.28 | | ||
| 2.2.2 P33 代码清单 2-1 最后一行 | `'<h1>Hello, %s!<h1>'` | `'<h1>Hello, %s!</h1>'` | `<h1>` 关闭斜线 18.12.28 | | ||
| 2.2.2 P33 代码清单 2-1 最后一行 | | 该行注释缩进出错,向左移动至保留 2 个空格 | 排版错误 18.12.28 | | ||
| 2.2.3 P34 图2-5 | | 地址栏的地址应为/nothing,和描述对应。图中的/foo在后面实际被定义了 | 笔误 18.9.28 | | ||
| 2.2.3.3 P36 中部代码块最后一行 | 多出源码中没有的<p>标签 | 去除<p>标签 | 与源码不符 19.03.07 | | ||
| 2.3.1 P41 代码清单 2-2 第 7 行 | redierct | redirect | 笔误 18.12.24 | | ||
| 2.3.2.4 P45 JSON代码示例 | "heading":"Remider", | "heading":"Reminder", | 笔误。单词拼写错误。 18.11.28 | | ||
| 2.3.3 P47 表2-10后面的第1个附注段落 | Respone | Response | 笔误。拼写错误 | | ||
|