What's the meaning of the default output of manage.py runserver?

蹲街弑〆低调 提交于 2019-12-05 10:28:34

问题


What's the meaning of the default output of manage.py runserver? Can't find any documentation on it:

[25/Jan/2013 07:45:59] "GET / HTTP/1.1" 200 149

回答1:


I've marked up the default output to help explain its meaning:

([25/Jan/2013 07:45:59]) ("GET / HTTP/1.1") (200) (149)

(Datetime request was sent) (telnet/netcat-style plaintext request string) (HTTP status code) (bytes sent as response)

All these can be confirmed in your favorite browsers dev console.



来源:https://stackoverflow.com/questions/14523143/whats-the-meaning-of-the-default-output-of-manage-py-runserver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!