我试图像Content-Type通过CGI脚本一样设置HTTP标头。在PHP:header('Content-Type: text/plain');// orecho 'Content-Type: text/plain', "\r\n\r\n"; // as first line或在Go:fmt.Print("Content-Type: text/plain\r\n\r\n") // as first line两者都对输出没有影响。如何才能做到这一点?编辑我还Go使用CGI包在中尝试了以下方法:package mainimport "fmt"import "os"import "net/http/cgi"func main() { r,e := cgi.Request() if e != nil { fmt.Println(e) os.Exit(200) } fmt.Printf("%#v", r) os.Exit(200)}但是我得到了错误:cgi: failed to parse REQUEST_URI into a URL:
1 回答
- 1 回答
- 0 关注
- 174 浏览
添加回答
举报
0/150
提交
取消