request和response

request。客户端传递过来一些数据(通过get或post方法),服务端可以利用request取出这些数据。

response。服务端将一些东西返回给客户端。如可以写cookie,实际将cookie写到了客户端。

客户端要取服务器返回的东西也是通过request取。

原文地址:https://www.cnblogs.com/minconding/p/10431407.html