本文整理汇总了Golang中github.com/labstack/echo.Echo.Get方法的典型用法代码示例。如果您正苦于以下问题:Golang Echo.Get方法的具体用法?Golang Echo.Get怎么用?Golang Echo.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/labstack/echo.Echo
的用法示例。
在下文中一共展示了Echo.Get方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: registerRoute
// 注册路由
func registerRoute(e *echo.Echo) {
e.Get("/", welcome)
e.Favicon("favicon.ico")
e.Get("/:market/:code/:start/:end/1m", queryPeroid60)
}
示例2: SetupKeysRoutes
func SetupKeysRoutes(e *echo.Echo) {
e.Get("", listKeys)
e.Get("/:id", showKey)
e.Post("", createKey)
e.Put("/:id", updateKey)
e.Delete("/:id", deleteKey)
}
示例3: RegisterRoutes
// RegisterRoutes sets up the http request handlers with Echo
func RegisterRoutes(e *echo.Echo, db *mgo.Database, basePieURL string, service service.RiskService, fnDelayer *FunctionDelayer) {
e.Get("/pies/:id", func(c *echo.Context) (err error) {
pie := &plugin.Pie{}
id := c.Param("id")
if bson.IsObjectIdHex(id) {
query := db.C("pies").FindId(bson.ObjectIdHex(id))
err = query.One(pie)
if err == nil {
c.JSON(200, pie)
}
} else {
c.String(400, "Bad ID format for requested Pie. Should be a BSON Id")
}
return
})
e.Post("/calculate", func(c *echo.Context) (err error) {
patientID := c.Form("patientId")
fhirEndpointURL := c.Form("fhirEndpointUrl")
key := fmt.Sprintf("%[email protected]%s", patientID, fhirEndpointURL)
fnDelayer.Delay(key, func() {
service.Calculate(patientID, fhirEndpointURL, basePieURL)
})
return
})
}
示例4: InitRoutes
func InitRoutes(e *echo.Echo) {
h := new(handler)
e.Get("/json", h.json())
e.Get("/db", h.db())
e.Get("/queries/*", h.queries())
e.Get("/fortunes", h.fortunes())
e.Get("/updates/*", h.updates())
e.Get("/plaintext", h.plaintext())
}
示例5: registerClient
func registerClient(e *echo.Echo) {
e.Get("/bundle.js", func(c *echo.Context) error {
return c.File("../client/bundle.js", "", false)
})
e.Get("/", func(c *echo.Context) error {
return c.File("../client/index.html", "", false)
})
}
示例6: Set
func Set(e *echo.Echo) *echo.Echo {
e.Favicon("static/favicon.ico")
e.Static("/", "static")
e.Get("/", controller.Index)
e.Get("/eval/", controller.Eval)
e.Post("/eval/", controller.PostEval)
return e
}
示例7: Configure
// Configure setups routes and templates
func Configure(r *render.BufferedRender, e *echo.Echo) error {
// Add templates
err := r.Load("500", utils.TmplAbs("500.tmpl"), utils.TmplAbs("layouts", "black_base.tmpl"))
if err != nil {
return err
}
e.SetHTTPErrorHandler(HandleError)
e.Get("/500", FailOnPropouse)
// Add routes
return nil
}
示例8: setupHandlers
func (s *yovpnServer) setupHandlers(e *echo.Echo) {
e.Get("/", s.blank)
e.Get("/cleanup", s.cleanup)
e.Put("/endpoint", s.createEndpoint)
e.Get("/endpoint/:id", s.getEndpoint)
e.Delete("/endpoint/:id", s.deleteEndpoint)
e.Get("/regions", s.getRegions)
}
示例9: registerRouterHandler
func registerRouterHandler(e *echo.Echo) {
e.Get("/users/:id", func(c *echo.Context) error {
return c.String(http.StatusOK, "/users/"+c.Param("id"))
})
e.Get("/:id", func(c *echo.Context) error {
return c.String(http.StatusOK, "/"+c.Param("id"))
})
e.Get("/post/:id", func(c *echo.Context) error {
return c.String(http.StatusOK, getPost(c.Param("id")))
})
e.Get("/welcome", welcome)
}
示例10: SetupDropletActionsRoutes
func SetupDropletActionsRoutes(e *echo.Echo) {
e.Get("/:actionId", getDropletAction)
e.Post("/disable_backups", disableDropletBackups)
e.Post("/reboot", rebootDroplet)
e.Post("/power", powerCycleDroplet)
e.Post("/shutdown", shutdownDroplet)
e.Post("/power_off", powerOffDroplet)
e.Post("/power_on", powerOnDroplet)
e.Post("/restore", restoreDroplet)
e.Post("/password_reset", passwordResetDroplet)
e.Post("/resize", resizeDroplet)
e.Post("/rebuild", rebuildDroplet)
e.Post("/rename", renameDroplet)
e.Post("/change_kernel", changeDropletKernel)
e.Post("/enable_ipv6", enableDropletIPv6)
e.Post("/enable_private_networking", enableDropletPrivateNetworking)
e.Post("/snapshot", snapshotDroplet)
e.Post("/upgrade", upgradeDroplet)
}
示例11: routes
func routes(e *echo.Echo) {
e.Get("/products", rest.GetProducts)
}
示例12: createUsersRoutes
func createUsersRoutes(e *echo.Echo) {
e.Post("/users", createUser)
e.Get("/users", getUsers)
e.Get("/users/:id", getUser)
}
示例13: Route
func Route(e *echo.Echo, a *AppContext) {
//Quotes
e.Post("/quotes", a.NewQuote)
e.Get("/quotes", a.GetQuotes)
e.Get("/quotes/:id", a.FindOneQuote)
e.Put("/quotes/:id", a.EditQuote)
e.Delete("/quotes/:id", a.DeleteQuote)
//Slack specific api calls, uses incoming x-www-form-urlencoded post data instead of json
e.Post("/slack/insertQuote", a.NewQuote)
e.Get("/slack/searchQuote", a.SearchQuote)
//Activity feed
e.Post("/activities", a.NewActivity)
e.Get("/activities", a.GetActivities)
e.Get("/activities/:id", a.FindOneActivity)
e.Delete("/activities/:id", a.DeleteActivity)
//Debug
e.Get("/debug", a.SendQuote)
}
示例14: Wrap
func Wrap(e *echo.Echo) {
e.Get("/debug/pprof/", IndexHandler)
e.Get("/debug/pprof/heap", HeapHandler)
e.Get("/debug/pprof/goroutine", GoroutineHandler)
e.Get("/debug/pprof/block", BlockHandler)
e.Get("/debug/pprof/threadcreate", ThreadCreateHandler)
e.Get("/debug/pprof/cmdline", CmdlineHandler)
e.Get("/debug/pprof/profile", ProfileHandler)
e.Get("/debug/pprof/symbol", SymbolHandler)
}
示例15: loadHandlers
func loadHandlers(e *echo.Echo) {
if itrak.Debug {
e.SetDebug(true)
}
// Point to the client application generated inside the webapp dir
e.Index("./webapp/build/index.html")
e.ServeDir("/", "./webapp/build/")
server_stats = stats.New()
e.Use(server_stats.Handler)
e.Get("/stats", getStats)
e.Get("/test1", getTestData)
e.Get("/part", getPartsList)
e.Get("/task", getTaskList)
e.Get("/jtask", getJTaskList)
e.Post("/login", login)
e.Delete("/login", logout)
e.Get("/people", getPeople)
e.Get("/people/:id", getPerson)
e.Post("/people/:id", savePerson)
e.Get("/site", getSites)
e.Get("/site/:id", getSite)
e.Post("/site/:id", saveSite)
e.Get("/roles", getRoles)
e.Get("/vendors", getAllVendors)
e.Post("/vendors/:id", saveVendor)
// Equipment Related functions
e.Get("/equipment", getAllEquipment)
e.Get("/site_equipment/:id", getAllSiteEquipment)
e.Get("/equipment/:id", getEquipment)
e.Post("/equipment/:id", saveEquipment)
e.Get("/subparts/:id", subParts)
e.Get("/spares", getAllSpares)
e.Get("/spares/:id", getEquipment)
e.Post("/spares/:id", saveEquipment)
e.Get("/consumables", getAllConsumables)
e.Get("/consumables/:id", getEquipment)
e.Post("/consumables/:id", saveEquipment)
e.Get("/equiptype", getAllEquipTypes)
e.Get("/equiptype/:id", getEquipType)
e.Post("/equiptype/:id", saveEquipType)
e.Get("/task", getAllTask)
e.Get("/sitetask/:id", getSiteTasks)
e.Get("/task/:id", getTask)
e.Post("/task/:id", saveTask)
}