Go의 웹 프레임을 GAE로 이동하는 Goji(goji.io)
goji
새로운거 같아서 GAE에서 이동하는 코드를 써봤어요.구(?)Goji
https://github.com/zenazn/goji
새로운 Goji
https://github.com/goji/goji
코드가 상당히 변했기 때문에 호환되지 않는 것 같습니다.이번에 새로운 Goji로 코드를 써봤어요.
package main
import (
"encoding/json"
"fmt"
"io"
"net/http"
"goji.io"
"goji.io/pat"
"golang.org/x/net/context"
)
func init() {
mux := goji.NewMux()
mux.HandleFuncC(pat.Get("/"), index)
mux.HandleFuncC(pat.Get("/hello/:name"), hello)
mux.HandleFuncC(pat.Get("/article"), article)
http.Handle("/", mux)
}
func index(c context.Context, w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "index page")
}
func hello(c context.Context, w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, %s!", pat.Param(c, "name"))
}
type Article struct {
Title string `json:"title"`
Content string `json:"content"`
}
func article(c context.Context, w http.ResponseWriter, r *http.Request) {
article := Article{
Title: "title",
Content: "hello world",
}
response, _ := json.Marshal(article)
io.WriteString(w, string(response))
}
다음 명령을 따릅니다.$ goapp serve
이런 느낌으로 움직여.일지도 이런 느낌이야.
이번에 쓴 샘플 코드는 여기에 두세요.
https://github.com/funnythingz/try-gae-go
Reference
이 문제에 관하여(Go의 웹 프레임을 GAE로 이동하는 Goji(goji.io)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/funnythingz/items/6ffb01f332cf11483fa6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)