Web.Go跟web.py类似,但使用的是Go编程语言实现的Web应用开发框架。
安装方法:
gitcloegit://github.com/hoisie/web.go.gitcdweb.gomake&&makeistall示例代码:
packagemaiimport("web")fuchello(valstrig)strig{retur"hello"+val}fucmai(){web.Get("/(.*)",hello)web.Ru("0.0.0.0:9999")}编译方法:8ghello.go&&8l-ohellohello.8&&./hello
测试方法:https://localhost:9999/world










评论