當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Request.State方法代碼示例

本文整理匯總了Golang中net/http.Request.State方法的典型用法代碼示例。如果您正苦於以下問題:Golang Request.State方法的具體用法?Golang Request.State怎麽用?Golang Request.State使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net/http.Request的用法示例。


在下文中一共展示了Request.State方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: CreateLoc

func (loc Locntrl) CreateLoc(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
	var re Request
	var r Response

	json.NewDecoder(r.Body).Decode(&re)
	coord := getLoc(re.Address + "+" + re.City + "+" + re.State + "+" + re.Zip)
	fmt.Println("Lat:", coord.Coordinate.Lat, "Long:", coord.Coordinate.Lang)

	r.Id = bson.NewObjectId()
	r.Add = re.Add
	r.City = re.City
	r.Name = re.Name
	r.Zip = re.Zip
	r.State = re.State
	r.Coordinate.Lang = coord.Coordinate.Lang
	r.Coordinate.Lat = coord.Coordinate.Lat
	loc.se.DB("jaspalgill").C("location").Insert(r)
	result, _ := json.Marshal(r)
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(201)
	fmt.Fprintf(w, "%s", result)
}
開發者ID:jaspalgill,項目名稱:cmpe273-assignment2,代碼行數:22,代碼來源:crude.go

示例2: UpdateLoc

func (loc Locntrl) UpdateLoc(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
	var re Request
	var r Response

	id := p.ByName("id")
	if !bson.IsObjectIdHex(id) {
		w.WriteHeader(404)
		return
	}
	id := bson.ObjectIdHex(id)
	if err := loc.se.DB("jaspalgill").C("location").FindId(id).One(&r); err != nil {
		w.WriteHeader(404)
		return
	}
	json.NewDecoder(r.Body).Decode(&re)
	coord := getLoc(re.Address + "+" + re.City + "+" + re.State + "+" + re.Zip)
	fmt.Println("Lat:", coord.Coordinate.Lat, "Long:", coord.Coordinate.Lang)
	r.Add = re.Add
	r.City = re.City
	r.State = re.State
	r.Zip = re.Zip
	r.Coordinate.Lat = coord.Coordinate.Lat
	r.Coordinate.Lang = coord.Coordinate.Lang

	c := loc.se.DB("jaspalgill").C("location")

	i := bson.M{"id": id}
	err := c.Update(i, response)
	if err != nil {
		panic(err)
	}
	result, _ := json.Marshal(r)
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(201)
	fmt.Fprintf(w, "%s", result)
}
開發者ID:jaspalgill,項目名稱:cmpe273-assignment2,代碼行數:36,代碼來源:crude.go


注:本文中的net/http.Request.State方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。