示例#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")
}