Jsp請求與響應物件

2021-09-20 06:51:52 字數 1387 閱讀 3038

request表示客戶端請求服務端的http請求資訊

response表示表示服務端響應客戶端的http響應資訊

服務端的到客戶端請求時資訊頭中的cookie

object getattribute(string name)

返回名稱為name的屬性的值

string getheader(string name)

返回名稱為name的資訊頭

下面的乙個例子摘自菜鳥教程

設定重定向的url編碼

void addcookie(cookie cookie)

相應中新增cookie

下面的例子摘自菜鳥教程

// 設定每隔5秒自動重新整理

response.setintheader("refresh", 5);

// 獲取當前時間

calendar calendar = new gregoriancalendar();

string am_pm;

int hour = calendar.get(calendar.hour);

int minute = calendar.get(calendar.minute);

int second = calendar.get(calendar.second);

if(calendar.get(calendar.am_pm) == 0)

am_pm = "am";

else

am_pm = "pm";

string ct = hour+":"+ minute +":"+ second +" "+ am_pm;

%>

說明一下,setintheader("refresh", 5); 

refresh是乙個響應頭,表示瀏覽器多長時間對頁面進行一次更新

更新原理,重新傳送請求。

Django請求響應物件

httprequest儲存了客戶請求的相關引數和一些查詢方法。請求頁面的全路徑,不包括網域名稱 例如,hello http請求方法,包括 get post querydict類例項,包含所有http get引數的字典物件。querydict類例項,包含所有http post引數的字典物件。為了方便,...

express 請求物件 響應物件

req.params 乙個陣列,包含命名過的路由引數 req.param name 返回命名的路由引數 req.query 乙個物件,以鍵值對存放的查詢字串引數 req.body 乙個物件,包含post請求 req.router 當前匹配路由資訊 req.cookies 乙個物件,包含客服端傳來的c...

Flask請求物件 響應物件

form 乙個字典,儲存了請求提交的所有表單字段 args 乙個字典,儲存了url查詢字串傳遞的所有引數 values 乙個字典,form和args集合 cookies 字典,儲存了所有cookie headers 字典,儲存了請求http頭部 files 字典,儲存所有上傳的檔案 get data...