Skip to content

Commit

Permalink
Update the error list
Browse files Browse the repository at this point in the history
  • Loading branch information
meizhaohui authored Nov 11, 2018
1 parent a72be05 commit 9198b71
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion errata/errata.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

下面是《Flask Web开发实战》的勘误信息。我在helloflask.com上创建了一个镜像勘误页面,阅读体验更好,请访问 http://helloflask.com/book/errata 查看。

最后更新:2018/11/05
最后更新:2018/11/11

## 贡献指南

Expand Down Expand Up @@ -57,8 +57,12 @@
| 2.3.2 | P44 | HTML小节的最后1行 | HTTP | HTML | 笔误 |
| 2.3.2.4 | P46 | 倒数第3个代码块 | `return jsonify({name: 'Grey Li', gender: 'male'})` | `return jsonify({'name': 'Grey Li', 'gender': 'male'})` | 笔误。字典中的键未加引号 | 18.10.18 |
| 2.2.3 | P48 | 图2-11 | | 图中的响应状态码应该为 302 Found | 文图不对应 | 18.10.18 |
| 2.3.4.2 | P50 | 代码清单2-5下第1段第3行 | logged-in cookie| logged_in cookie | 排版错误 | 18.11.8 |
| 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.4.1.(2) | P67 | “攻击示例”小节第3段文字第2行 | 设为 “';drop table users; --” | 设为 “';drop table students; --” | 笔误 |18.11.2 |
| 4.1 | P105 | 最后一行 ||| 笔误 | 18.11.11 |
| 4.2.3 | P110 | 代码清单4-2最后1行 | `'login.html'` | `'basic.html'` | 笔误 | 18.9.28 |
| 4.3.1 | P112 | 第1个代码块后第1行 | 3000 | 2000 | 笔误,不同的浏览器对于URL有不同的长度限制,此处的长度为“最佳实践” |
| 4.3.1 | P113 | 代码清单4-5第1行 | `'/'` | `'/basic'` | 笔误 | 18.10.18 |
Expand All @@ -67,6 +71,7 @@
| 5.3.3 | P146 | 第2个代码块 | | 开头可添加一行导入`from app import Note` | 更完善 | 18.10.18 |
| 5.4.1.1 | P147 | ”Create“小节第1个代码块第4行 | `'DON'T BELIEVE……'` | `'DON\'T BELIEVE……'` | 代码错误,字符串漏掉了转义符号 |
| 5.4.1.2 | P150 | 表5-7下的第1个代码块 | `Note.body='SHAVE'` | `Note.body == 'SHAVE'` | 代码错误,少了1个等于号 | 18.9.22 |
| 5.4.2 | P152 | 代码清单5-4第1行| 没有导入flask闪现消息,在第1行增加以下代码 |from flask import flash| 改进 | 18.11.8 |
| 5.5.2.3 | P160 | ”建立关系“小节第1个代码块 | | 第2行插入`ham.author_id = 1` | 省略步骤,可加可不加 | 18.9.22 |
| 5.5.2.4 | P162 | 代码清单5-11第8行 | `title = ` | `name = ` | 笔误 | 18.9.26 |
| 5.5.2.4 | P163 | ”建立双向关系“小节第3个代码块第6行 | `it.writer = writer` | `it.writer = king` | 笔误 | 18.9.26 |
Expand Down

0 comments on commit 9198b71

Please sign in to comment.