Golang Gorilla 모드 HTML 양식

798 단어 go

Golang 고릴라 모드
func readForm(r *http.Request) *User {
    r.ParseForm()
    user := new(User)
    decoder := schema.NewDecoder()
    decodeErr := decoder.Decode(user, r.PostForm)
    if decodeErr != nil {
        log.Println("Error mapping parsed form data to struct : ", decodeErr)
    }
    return user

}
우선, 이해Golang HTML Forms를 한 다음에 고릴라 모드를 사용합니다.
Gorilla Schema in Golang로 폼 데이터를 얻을 수 있는 완전한 소스 코드를 배우고 얻습니다.

좋은 웹페이지 즐겨찾기