douwei2966 2017-05-18 09:44
浏览 86
已采纳

Golang:使用循环切片/地图范围注册多个路由

Consider I have slice of string paths:

paths := []string{"/path0", "/path1", "/path2" /*... "/path-n"*/ }
// where n is the last path

Using package net/http, I want to register handler for this path using for loop with range clause. This is how I do this:

for _, path := range paths {
    http.HandleFunc(path, handler)
}
// in this case every handler is print the path to the console or to the browser

But I ended up with same output which is the last element of slice, so when I go to /path1, the output is /path-n. Same behavior with other element, always print /path-n.

But if I use this:

http.HandleFunc(paths[0], handler)
http.HandleFunc(paths[1], handler)
http.HandleFunc(paths[2], handler)
// ...
http.HandleFunc(paths[n], handler)

The output is correct.

What's going on, did I miss something? I need for loop for registration given by slice of paths or map, so I can't do the second code.

Can you give me the alternative to accomplished this task?

  • 写回答

1条回答 默认 最新

  • duanli9591 2017-05-18 10:16
    关注

    So the problem was that you actually used this code:

    for _, path := range paths {
        http.HandleFunc(path, func(w http.ResponseWriter, req *http.Request) {
            fmt.Fprintf(w, path)
        })
    }
    

    You used a function literal, a closure as the handler function to register. Closures capture the context they refer to, in your case the path loop variable.

    But there is only a single path loop variable, its value is overwritten in each iterations of the loop, and its final value will be the last path. Relevant section from the spec: For statements with range clause:

    The iteration variables may be declared by the "range" clause using a form of short variable declaration (:=). In this case their types are set to the types of the respective iteration values and their scope is the block of the "for" statement; they are re-used in each iteration. If the iteration variables are declared outside the "for" statement, after execution their values will be those of the last iteration.

    Once the for loop is finished, and you start making requests, each registered handler function will send back the value of this single path variable. That's why you see the last path returned for all requested paths.

    Solution is easy: create a new variable in each iteration, and use that in the handler function:

    for _, path := range paths {
        path2 := path
        http.HandleFunc(path2, func(w http.ResponseWriter, req *http.Request) {
            fmt.Fprintf(w, path2)
        })
    }
    

    What happens here is that we use a short variable declaration in each iteration to create a new variable, initialized with the value of the path loop variable. And the handler function we register will refer to this new variable, unique only to one registered path.

    Another, equally good solution is to use an anonymous function with a parameter to pass the path string. Might be harder to understand though:

    for _, path := range paths {
        func(p string) {
            http.HandleFunc(p, func(w http.ResponseWriter, req *http.Request) {
                fmt.Fprintf(w, p)
            })
        }(path)
    }
    

    What happens here is that we call an anonymous function, passing the current path value to it, and it registers the handler function, using only the parameter of this anonymous function (and there's a new, distinct local variable allocated for each call).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题