初级会员
  • 第 75123 位会员
  • dtbu
  • 2022-08-23 08:11:40
  • Offline
  • 20 55

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • Transport: &http.Transport{ DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) { } } 已经可以,虽然这些还看不懂,但是已经成功实现了。
  • <code>package main import ( "fmt" "net/http" ) func main() { ipList := [5]string{"192.168.1.2", "192.168.1.3", "192.168.1.4", "192.168.1.5", "192.168.1.6"} searchUrl := "http://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=1221" searchRequest, err := http.NewRequest("GET", searchUrl, nil) if err != nil { fmt.Println(err) } client := &http.Client{} searchIndex, err := client.Do(searchRequest) if err != nil { fmt.Println(err) } defer searchIndex.Body.Close() fmt.Print(searchIndex) } </code> 请教楼上大佬,假如我服务器的ip地址事先存入了数组ipList,如何在发起http请求的时候,使用这些ip来对外访问呢.
  • 第一次见把广告做到这么清新脱俗,厉害了
  • 我之前的程序在挂机运行的时候,也遇到过这个错误代码. 我的解决方法是,所有打开的文件都不用defer延迟关闭,手动在合适的位置来关闭,这样就能找到程序真正的错误代码.