此程序下载的是d3.js代码。可以保存到.html文件中运行。
package main
import(
"fmt"
"io/ioutil"
"net/http"
)
func main(){
response,_:=http.Get("http://square.github.io/crossfilter/")
defer response.Body.Close()
body,_:=ioutil.ReadAll(response.Body)
fmt.Println(string(body))
}
有疑问加站长微信联系(非本文作者)