Redirect 跳转
(status int, url string)
| 916 | |
| 917 | // Redirect 跳转 |
| 918 | func (this *HTTPWriter) Redirect(status int, url string) { |
| 919 | httpRedirect(this, this.req.RawReq, url, status) |
| 920 | this.isFinished = true |
| 921 | } |
| 922 | |
| 923 | // StatusCode 读取状态码 |
| 924 | func (this *HTTPWriter) StatusCode() int { |
no test coverage detected