コード例 #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")
}