1、使用
@pathvariable
註解 public modelandview helloworld(@pathvariable string id, @pathvariable string str)
@pathvariable
也可以獲取
含正規表示式的一類值
例如: public void handle(@pathvariable string version, @pathvariable string extension) } 2
、用@modelattribute註解獲取
post
請求的form
表單資料
public class pojo
public string processsubmit(@modelattribute("pojo") pojo pojo) 3、
直接用httpservletrequest獲取
用註解@requestparam
繫結請求引數a到
,變數a 當請求引數
a不存在時會有異常發生
,可以通過設定屬
required=false
解決,
例如: @requestparam(value="a", required=false)
非同步請求的幾種方法
1.最原始的js new xmlhttprequest 由於瀏覽器相容的原因,複雜,多使用基於jquery的非同步請求方法 內部封裝 2.基於jquery的ajax方法 1 load url,data callback 例項如下 test load test.php function 2 getjs...
http請求的幾種方法
1.get 傳送請求來獲得伺服器上的資源,請求體中不會包含請求資料,請求資料放在協議頭中。另外get支援快取 快取 可保留書籤等。冪等 2.post 和get一樣很常見,向伺服器提交資源讓伺服器處理,比如提交表單 上傳檔案等,可能導致建立新的資源或者對原有資源的修改。提交的資源放在請求體中。不支援快...
獲取元素的幾種方法
document.getelementbyid id document.getelementbytagname 標籤名 document.getelementbyclassname classname 獲取父節點,元素物件.parentnode 獲取子元素,元素物件.children 獲取下乙個兄弟...