当前位置: 首页>>代码示例>>Golang>>正文


Golang Router.Post方法代码示例

本文整理汇总了Golang中github.com/gorilla/pat.Router.Post方法的典型用法代码示例。如果您正苦于以下问题:Golang Router.Post方法的具体用法?Golang Router.Post怎么用?Golang Router.Post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/gorilla/pat.Router的用法示例。


在下文中一共展示了Router.Post方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: ptyExec

func ptyExec(test *testing.T, mux *pat.Router) {
	mux.Post("/exec", func(res http.ResponseWriter, req *http.Request) {
		test.Log("got exec")
		conn, rw, err := res.(http.Hijacker).Hijack()
		if err != nil {
			res.WriteHeader(http.StatusInternalServerError)
			res.Write([]byte(err.Error()))
			return
		}
		defer conn.Close()
		script := req.FormValue("cmd")
		if script == "" {
			test.Log("missing script")
			test.FailNow()
		}
		test.Log("executing", script)
		cmd := exec.Command("/bin/bash", "-c", script)
		file, err := pty.Start(cmd)
		if err != nil {
			test.Log(err)
			test.FailNow()
		}
		test.Log("copying from pty")
		go io.Copy(file, rw)
		io.Copy(conn, file)
		test.Log("finished running")
	})
}
开发者ID:sfermigier,项目名称:nanobox,代码行数:28,代码来源:exec_test.go

示例2: addClueRoutes

func addClueRoutes(router *pat.Router) {
	router.Get("/clue/{clue_id}/hint", serve(
		Authenticate(true),
		parseFromUrl(urlParams{
			"clue_id": parseParamToInt64,
			"lat":     parseParamToFloat64,
			"lng":     parseParamToFloat64,
		}),
		takeHint,
		toJson,
	))
	router.Get("/clue", serve(
		Authenticate(true),
		parseFromUrl(urlParams{"clue_id": parseParamToInt64}),
		currentClue,
		toJson,
	))
	router.Post("/clue/{clue_id}", serve(
		Authenticate(true),
		parseFromUrl(urlParams{
			"clue_id": parseParamToInt64,
		}),
		parseRequest(new(_SolveClueReq)),
		solveClue,
		toJson,
	))
	router.Put("/clue/{clue_id}", serve(
		dashboardAuth,
		parseRequest(new(record.Clue)),
		updateClue,
		toJson,
	))
}
开发者ID:pjherring,项目名称:ggc,代码行数:33,代码来源:clue.go

示例3: normalExec

func normalExec(test *testing.T, mux *pat.Router) {
	mux.Post("/exec", func(res http.ResponseWriter, req *http.Request) {
		test.Log("got exec")
		conn, rw, err := res.(http.Hijacker).Hijack()
		if err != nil {
			res.WriteHeader(http.StatusInternalServerError)
			res.Write([]byte(err.Error()))
			return
		}
		defer conn.Close()
		script := req.FormValue("cmd")
		if script == "" {
			test.Log("missing script")
			test.FailNow()
		}
		test.Log("executing", script)
		cmd := exec.Command("/bin/bash", "-c", script)
		cmd.Stdin = rw
		cmd.Stderr = conn
		// cmd.Stdout = conn
		// cmd.Run()
		reader, err := cmd.StdoutPipe()
		cmd.Start()
		io.Copy(conn, reader)
		conn.(*net.TCPConn).CloseWrite()
		err = cmd.Wait()
		test.Log("finished running")
	})
}
开发者ID:sfermigier,项目名称:nanobox,代码行数:29,代码来源:exec_test.go

示例4: userAddRoutes

func userAddRoutes(router *pat.Router) {
	router.Post("/user/waiver", serve(
		Authenticate(true),
		acceptWaiver,
		toJson,
	))
}
开发者ID:pjherring,项目名称:ggc,代码行数:7,代码来源:user.go

示例5: teamAddRoutes

func teamAddRoutes(router *pat.Router) {
	router.Post("/team/{team_id}/finish", serve(
		dashboardAuth,
		parseFromUrl(urlParams{
			"team_id": parseParamToInt64,
		}),
		setTeamFinish,
		toJson,
	))
	router.Delete("/team/{team_id}/finish", serve(
		dashboardAuth,
		parseFromUrl(urlParams{
			"team_id": parseParamToInt64,
		}),
		setTeamFinish,
		toJson,
	))
	router.Post("/team/{phrase}", serve(
		parseFromUrl(urlParams{
			"phrase": parseParamToString,
		}),
		parseRequest(new(_TeamJoinReq)),
		validateJoinTeam,
		joinTeam,
		SetUserId,
		toJson,
	))
	router.Post("/team", serve(
		parseRequest(new(_TeamCreateReq)),
		createTeam,
		SetUserId,
		toJson,
	))
}
开发者ID:pjherring,项目名称:ggc,代码行数:34,代码来源:team.go


注:本文中的github.com/gorilla/pat.Router.Post方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。