Golang CGI Run

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

1.test.go files, using the CGI package,. Go is not an executable file, use go run to invoke

Package Mainimport ("Log"    "net/http"    "net/http/cgi") Func Main () {http. Handlefunc ("/", func (w http. Responsewriter, R *http. Request) {handler:=New(CGI. Handler) Handler. Path="D:/go/bin/go"Script:="d:/workspace/gopro/"+R.url. Path log. Println (handler. Path) handler. Dir="d:/workspace/gopro/"args:= []string{"Run", script} handler. Args=Append (handler.        args, args ...) Handler. ENV= Append (handler. Env"Gopath=d:/go/gopath") handler. ENV= Append (handler. Env"Goroot=d:/go") log. Println (handler. Args) handler. Servehttp (W, R)}) log. Fatal (http. Listenandserve (": 8080", nil))}

2.testcgi.go Code

Package Mainimport (    "fmt") func init () {    fmt. Print ("content-type:text/plain;charset=utf-8\n\n")}func main () {    fmt. Println ("This isgocgi test")}

3. Browser input Http://127.0.0.1:8080/testcgi.go view running results

Refer to the original link address: http://www.cnblogs.com/yjf512/archive/2012/12/25/2831891.html

I use my own environment for Test runs and

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.