예제 #1
0
파일: comment.go 프로젝트: RoyDong/notes
func (f *CommentForm) LoadData(r *potato.Request) {
	f.Content, _ = r.String("content")
	f.State, _ = r.Int("state")
}
예제 #2
0
파일: topic.go 프로젝트: RoyDong/notes
func (f *TopicForm) LoadData(r *potato.Request) {
	f.Title, _ = r.String("title")
	f.Content, _ = r.String("content")
	f.State, _ = r.Int("state")
}