404
()
| 84 | |
| 85 | //404 |
| 86 | func (this *BaseController) Error404() { |
| 87 | this.Layout = "" |
| 88 | this.Data["content"] = "Page Not Foud" |
| 89 | this.Data["code"] = "404" |
| 90 | this.Data["content_zh"] = "页面被外星人带走了" |
| 91 | this.TplName = "error.html" |
| 92 | } |
| 93 | |
| 94 | //501 |
| 95 | func (this *BaseController) Error501() { |
no outgoing calls
no test coverage detected