10 2020 档案

摘要:git对象 git是面向对象的,对象存储在.git/objects文件夹中。此文件夹中,一个对象就是一个文件,文件名就是对象的id 提交commit的时候,每个文件都是一个数据对象,一个树对象会用来维护一次提交的所有数据对象,如果提交的内容包含文件夹,那么这个文件夹也会是一个树对象 一次提交就是一个 阅读全文
posted @ 2020-10-29 14:53 luozx207 阅读(480) 评论(0) 推荐(0)
摘要:request.POST request实际上是django/core/handlers/wsgi.py::WSGIRequest的实例,而WSGIRequest是HttpRequest的子类 class WSGIRequest(http.HttpRequest): def _get_post(se 阅读全文
posted @ 2020-10-20 16:28 luozx207 阅读(1552) 评论(0) 推荐(1)