mirror of
https://github.com/gin-gonic/gin.git
synced 2025-12-13 13:12:17 +08:00
Merge 1818d94c5fe6dc89033952689bdf900a28c056c4 into e88fc8927a52b74f55bec0351604a56ac0aa1c51
This commit is contained in:
commit
047a4c346e
@ -1052,8 +1052,12 @@ func bodyAllowedForStatus(status int) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Status sets the HTTP response code.
|
// Status sets the HTTP response code.
|
||||||
func (c *Context) Status(code int) {
|
func (c *Context) Status(code int) error {
|
||||||
c.Writer.WriteHeader(code)
|
if code > 0 {
|
||||||
|
c.Writer.WriteHeader(code)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return errors.New("invalid status code")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Header is an intelligent shortcut for c.Writer.Header().Set(key, value).
|
// Header is an intelligent shortcut for c.Writer.Header().Set(key, value).
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user