Go语言的Web开发框架 Web.Go
来源:PHP程序员站 作者:PHP程序员站 发布时间:2011-02-26
Web.Go 跟web.py类似,但使用的是Go编程语言实现的 Web 应用开发框架。 安装方法: git clone git://github.com/hoisie/web.go.git cd web.go make make install 示例代码: package main import ( web ) func hello(val string) string { return hello + val } func m
Web.Go 跟 web.py 类似,但使用的是 Go 编程语言实现的 Web 应用开发框架。
安装方法:
git clone git://github.com/hoisie/web.go.git cd web.go make && make install
示例代码:
package main import ( "web" ) func hello(val string) string { return "hello " + val } func main() { web.Get("/(.*)", hello) web.Run("0.0.0.0:9999") }
编译方法:8g hello.go && 8l -o hello hello.8 && ./hello
测试方法:http://localhost:9999/world
延伸阅读:Web 开发与设计语言大盘点怎样才算是学会一种编程语言一个程序员需要掌握三类编程语言2011年1月编程语言排行榜 Python很给力2011年需要关注的9大编程语言Python赢得Tiobe 2010 年度语言大奖2011年2月编程语言排行榜