搜索首页
()
| 18 | |
| 19 | //搜索首页 |
| 20 | func (this *SearchController) Search() { |
| 21 | if wd := strings.TrimSpace(this.GetString("wd")); wd != "" { |
| 22 | this.Redirect(beego.URLFor("LabelController.Index", ":key", wd), 302) |
| 23 | return |
| 24 | } |
| 25 | this.Data["SeoTitle"] = "搜索 - " + this.Sitename |
| 26 | this.Data["IsSearch"] = true |
| 27 | this.TplName = "search/search.html" |
| 28 | } |
| 29 | |
| 30 | // 搜索结果页 |
| 31 | func (this *SearchController) Result() { |
no outgoing calls
no test coverage detected