本文整理匯總了Golang中github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/gin-gonic/gin.Context.Set方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.Set方法的具體用法?Golang Context.Set怎麽用?Golang Context.Set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/gin-gonic/gin.Context
的用法示例。
在下文中一共展示了Context.Set方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: subIdParam
func subIdParam(c *gin.Context) {
subId := c.Param("id")
if len(subId) != 64 || !util.IsHex(subId) {
c.AbortWithError(400, fmt.Errorf("Malformed event id"))
}
c.Set("id", subId)
c.Next()
}
示例2: keyParam
func keyParam(c *gin.Context) {
key := c.Param("key")
bts, err := hex.DecodeString(key)
if err != nil {
c.AbortWithError(400, err)
}
c.Set("keyBts", bts)
c.Next()
}
示例3: addressParam
func addressParam(c *gin.Context) {
addr := c.Param("address")
if !util.IsAddress(addr) {
c.AbortWithError(400, fmt.Errorf("Malformed address param: "+addr))
}
bts, _ := hex.DecodeString(addr)
c.Set("addrBts", bts)
c.Next()
}
示例4: heightParam
func heightParam(c *gin.Context) {
h, err := strconv.Atoi(c.Param("height"))
if err != nil {
c.AbortWithError(400, err)
}
if h < 0 {
c.AbortWithError(400, fmt.Errorf("Negative number used as height."))
}
c.Set("height", h)
c.Next()
}
示例5: parseTxModifier
func parseTxModifier(c *gin.Context) {
hold := c.Query("hold")
if hold == "true" {
c.Set("hold", true)
} else if hold != "" {
if hold != "false" {
c.Writer.WriteHeader(400)
c.Writer.Write([]byte("tx hold must be either 'true' or 'false', found: " + hold))
c.Abort()
}
}
}
示例6: parseSearchQuery
func parseSearchQuery(c *gin.Context) {
q := c.Query("q")
if q != "" {
data, err := _parseSearchQuery(q)
if err != nil {
c.Writer.WriteHeader(400)
c.Writer.Write([]byte(err.Error()))
c.Abort()
// c.AbortWithError(400, err)
return
}
c.Set("filters", data)
}
}
示例7: peerAddressParam
// TODO
func peerAddressParam(c *gin.Context) {
subId := c.Param("address")
c.Set("address", subId)
c.Next()
}
示例8: nameParam
func nameParam(c *gin.Context) {
name := c.Param("key")
c.Set("name", name)
c.Next()
}