关于 *http.requset疑问

hellsam · 2017-12-14 05:41:29 · 985 次点击 · 大约8小时之前 开始浏览    置顶
这是一个创建于 2017-12-14 05:41:29 的主题,其中的信息可能已经有所发展或是发生改变。

type TTT struct {
    R2 *http.Request
}

ttt2 := new(TTT)
fmt.Fprintln(w, ttt2.R2.Header.Get("Remote_addr"))
//以上这么调用是错误的 
我想实现自定义个函数 不想

//当然这也显然是没问题的 就是在调用这个test3函数的时候也必须要 声明reg *http.Request 有些函数我不希望这也使用
可否把 reg *http.Request 在内部调用  直接就是 func test3()  然后调用这个方法即可
func test3(reg *http.Request) {
    req.Header.Get("Remote_addr")
}

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

985 次点击  
加入收藏 微博
9 回复  |  直到 2017-12-15 01:30:06
hellsam
hellsam · #1 · 7年之前

额 有人能帮助吗

polaris
polaris · #2 · 7年之前

你看看你发的帖子,你能读通吗?感觉语句不通顺,看不太明白啊~

hellsam
hellsam · #3 · 7年之前

@polaris
就是把 reg *http.Request 可不可以放函数内部而不是放在函数右侧 因为需要用到reg里的方法

hellsam
hellsam · #4 · 7年之前

@polaris

func GetIP1(reg *http.Request) string{
   a:= req.Header.Get("Remote_addr")
   return a
}

func GetIP2() string{
   req:=*http.Request   //当然我知道这个肯定是错误的 不能这样调用 我想让这个在内部调用 而不是在()内
   b:== req.Header.Get("Remote_addr")
   return b
}

调用获取函数
fmt.println(Getip1(reg)) //这样调用 麻烦


fmt.println(Getip2())   //实现这样的类型  获取IP   就是有什么办法reg *http.Request 放在函数内部去使用它
polaris
polaris · #5 · 7年之前

http.Request 肯定得有个地方传过来;要么在调用时传递,要么通过结构存起来,内部使用。

hellsam
hellsam · #6 · 7年之前
@polaris 
我这样写 貌似获取IP为空 不知道为什么  也没报错 

type CeshiIP struct {
    GetIP http.Request
}

func main() {
    http.HandleFunc("/", test123)
    err := http.ListenAndServe(":82", nil)
    if err != nil {
        panic(err)
    }
}

func test123(w http.ResponseWriter, r *http.Request) {
    aa := new(CeshiIP)
    fmt.Fprintln(w, aa.GetIP.RemoteAddr) //用这个就得不到IP了空白

    //fmt.Fprintln(w, r.RemoteAddr)  //用这个获取IP正确的
}
polaris
polaris · #7 · 7年之前

CeshiIP 中的 GetIP 你根本没给它赋值,不空才怪

hellsam
hellsam · #8 · 7年之前

@polaris 能帮助下吗

polaris
polaris · #9 · 7年之前

aa := new(CeshiIP)

改为:aa := &CeshiIP{GetIP:r},同时

type CeshiIP struct {
    GetIP http.Request
}

这个定义也改为:

type CeshiIP struct {
    GetIP *http.Request
}
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传