Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Python-100-Days
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
huangkq
Python-100-Days
Commits
75ecfc40
Commit
75ecfc40
authored
May 30, 2019
by
jackfrued
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新了Linux和Django部分的文档
parent
82306325
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
.DS_Store
.DS_Store
+0
-0
Python语言进阶.md
Day16-20/Python语言进阶.md
+2
-1
玩转Linux操作系统.md
Day31-35/玩转Linux操作系统.md
+0
-0
06.中间件的应用.md
Day41-55/06.中间件的应用.md
+3
-3
No files found.
.DS_Store
View file @
75ecfc40
No preview for this file type
Day16-20/Python语言进阶.md
View file @
75ecfc40
...
...
@@ -198,7 +198,8 @@
-
常用算法:
- 穷举法 - 又称为暴力破解法,对所有的可能性进行验证,直到找到正确答案。
- 贪婪法 - 在对问题求解时,总是做出在当前看来是最好的选择,不追求最优解,快速找到满意解。
- 贪婪法 - 在对问题求解时,总是做出在当前看来
- 最好的选择,不追求最优解,快速找到满意解。
- 分治法 - 把一个复杂的问题分成两个或更多的相同或相似的子问题,再把子问题分成更小的子问题,直到可以直接求解的程度,最后将子问题的解进行合并得到原问题的解。
- 回溯法 - 回溯法又称为试探法,按选优条件向前搜索,当搜索到某一步发现原先选择并不优或达不到目标时,就退回一步重新选择。
- 动态规划 - 基本思想也是将待求解问题分解成若干个子问题,先求解并保存这些子问题的解,避免产生大量的重复运算。
...
...
Day31-35/玩转Linux操作系统.md
View file @
75ecfc40
This diff is collapsed.
Click to expand it.
Day41-55/06.中间件的应用.md
View file @
75ecfc40
...
...
@@ -22,7 +22,7 @@ def praise_or_criticize(request: HttpRequest):
return JsonResponse(data)
```
前端页面在收到
`{'code': 401, 'message': '请先登录'}`
后,可以将用户引导到登录页面。
前端页面在收到
`{'code': 401, 'message': '请先登录'}`
后,可以将用户引导到登录页面
,修改后的teacher.html页面的JavaScript代码部门如下所示
。
```
HTML
<script>
...
...
@@ -74,7 +74,7 @@ MIDDLEWARE = [
我们稍微为大家解释一下这些中间件的作用:
1.
CommonMiddleware - 基础设置中间件,可以处理
一
下一些配置参数。
1.
CommonMiddleware - 基础设置中间件,可以处理
以
下一些配置参数。
-
DISALLOWED_USER_AGENTS - 不被允许的用户代理(浏览器)
-
APPEND_SLASH - 是否追加
`/`
-
USE_ETAG - 浏览器缓存相关
...
...
@@ -89,7 +89,7 @@ MIDDLEWARE = [
4.
CsrfViewMiddleware - 通过生成令牌,防范跨请求份伪的造中间件。
5.
XFrameOptionsMiddleware - 通过设置请求头参数,防范点击劫持攻击的中间件。
在请求的过程中,上面的中间件会按照书写的顺序从上到下执行,
最后请求才会来到视图函数中
;在响应的过程中,上面的中间件会按照书写的顺序从下到上执行,与请求时中间件执行的顺序正好相反。
在请求的过程中,上面的中间件会按照书写的顺序从上到下执行,
然后是URL解析,最后请求才会来到视图函数
;在响应的过程中,上面的中间件会按照书写的顺序从下到上执行,与请求时中间件执行的顺序正好相反。
### 自定义中间件
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment