PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 新闻咨询 >> 业内新闻 >> 

Go语言的Web开发框架 Web.Go

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月编程语言排行榜
Tags: Go   语言   web   开发框架   Web.Go  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号