Header 获取Header
()
| 763 | |
| 764 | // Header 获取Header |
| 765 | func (this *HTTPWriter) Header() http.Header { |
| 766 | if this.rawWriter == nil { |
| 767 | return http.Header{} |
| 768 | } |
| 769 | return this.rawWriter.Header() |
| 770 | } |
| 771 | |
| 772 | // GetHeader 读取Header值 |
| 773 | func (this *HTTPWriter) GetHeader(name string) string { |
no outgoing calls
no test coverage detected