本文整理汇总了Golang中github.com/beego/wetalk/modules/post.PostForm.Lang方法的典型用法代码示例。如果您正苦于以下问题:Golang PostForm.Lang方法的具体用法?Golang PostForm.Lang怎么用?Golang PostForm.Lang使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/beego/wetalk/modules/post.PostForm
的用法示例。
在下文中一共展示了PostForm.Lang方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: New
func (this *PostRouter) New() {
this.TplName = "post/new.html"
if this.CheckActiveRedirect() {
return
}
form := post.PostForm{Locale: this.Locale}
if v := this.Ctx.GetCookie("post_topic"); len(v) > 0 {
form.Topic, _ = utils.StrTo(v).Int()
}
if v := this.Ctx.GetCookie("post_cat"); len(v) > 0 {
form.Category, _ = utils.StrTo(v).Int()
}
if v := this.Ctx.GetCookie("post_lang"); len(v) > 0 {
form.Lang, _ = utils.StrTo(v).Int()
} else {
form.Lang = this.Locale.Index()
}
slug := this.GetString("topic")
if len(slug) > 0 {
topic := models.Topic{Slug: slug}
topic.Read("Slug")
form.Topic = topic.Id
this.Data["Topic"] = &topic
}
post.ListCategories(&form.Categories)
post.ListTopics(&form.Topics)
this.SetFormSets(&form)
}