当我们使用go建立了服务器,那么一种常见的需求就摆在面前。如何给这个服务器的某个路径传参数呢?我们研究一下URL传参的接收与处理。
对于 http.Request 发出的请求,我们需要使用到 URL.Query().Get("XXX")
这次模拟建立一个价格查询页面
首先建立一个 dollars 类型,用以保存货币数值。
type dollars float32
对 dollars 建立一个 String() 方法,用以确定显示格式
func (d dollars) String() string { return fmt.Sprintf("$%.2f", d) }
建立一个 map 字典,保存多种东西的价格。
type MyHandler map[string]dollars
在 http.Handler 中处理路径和接收参数的操作
func (self MyHandler) ServeHTTP(w http.ResponseWriter, req *http.Request)
完整代码示例
package main
import (
"fmt"
"net/http"
"log"
)
type dollars float32
func (d dollars) String() string { return fmt.Sprintf("$%.2f", d) }
type MyHandler map[string]dollars
func (self MyHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
switch req.URL.Path {
case "/list":
for item, price := range self {
fmt.Fprintf(w, "%s: %s\n", item, price)
}
case "/price":
item := req.URL.Query().Get("item")
//item2 := req.Form.Get("item")
price, ok := self[item]
if !ok {
w.WriteHeader(http.StatusNotFound) // 404
fmt.Fprintf(w, "no such item: %q\n", item)
return
}
fmt.Fprintf(w, "%s\n", price)
default:
w.WriteHeader(http.StatusNotFound) // 404
fmt.Fprintf(w, "no such page: %s\n", req.URL)
}
}
func main() {
handler := MyHandler{"shoes": 50, "socks": 5}
log.Fatal(http.ListenAndServe(":4000", handler))
}
程序运行后,直接访问 http://localhost:4000/ 结果如下
no such page: /
访问 http://localhost:4000/list 结果如下
shoes: $50.00
socks: $5.00
访问 http://localhost:4000/price 结果如下
no such item: ""
这个路径是需要正确参数的,所以需要访问 http://localhost:4000/price?item=socks 结果如下
$5.00
http://localhost:4000/price?item=shoes 结果如下
$50.00
本例可以解决大部分跨页面传参和处理的基本方式了。
如果你不希望自己传递的参数出现在地址栏,那么需要在发出请求的页面上使用 post 方法。当然,接收页面也需要更换相应的接收方法。
网友评论