我在go中使用websocket。我从一个琐碎的例子中得到了一个websocketurl格式,我在谷歌上搜索了这个例子:
ws://{{$}}/ws
以下代码相对完整:
home.html:
<html>
<head>
<title>Chat Example</title>
<script type="text/javascript">
$(function() {
......
if (window["WebSocket"]) {
conn = new WebSocket("ws://{{$}}/ws");
conn.onclose = function(evt) {
appendLog($("<div><b>Connection closed.</b></div>"))
}
conn.onmessage = function(evt) {
appendLog($("<div/>").text(evt.data))
}
} else {
appendLog($("<div><b>Your browser does not support WebSockets.</b></div>"))
}
......
});
</script>
</head>
</html>
和wsServer.go:
package main
import (
"flag"
"log"
"net/http"
"text/template"
)
var addr = flag.String("addr", ":8080", "http service address")
var homeTempl = template.Must(template.ParseFiles("home.html"))
func serveHome(w http.ResponseWriter, r *http.Request) {
......
w.Header().Set("Content-Type", "text/html; charset=utf-8")
homeTempl.Execute(w, r.Host)
}
func main() {
http.HandleFunc("/", serveHome)
http.HandleFunc("/ws", serveWs)
err := http.ListenAndServe(:8080, nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
我以为这是一个正则表达式,但实际上我无法解释
我在自己的电脑浏览器上测试它,并将成功与联系起来
http://localhost:8080
但是
http://ip:8080 (which ip is my computer's also the litsening server's ip)
不是。为什么?
当然,当我将"ws://{$}}/ws"更改为某个url时,它是有效的。但我想知道为什么?这个表达式可以匹配什么?
完整的示例代码很大,我认为上面的问题就足够了。如果我遗漏了什么,你可以在这个页面上找到完整的例子:https://github.com/garyburd/go-websocket/tree/master/examples/chat
我猜您使用的是Go的模板包。模板包支持用那些花括号注释的{{ placeholders }}
。这些花括号可能包含range
、if
等语句和变量名。变量名$
是一个特殊名称,指向传递给template.Execute
方法的根元素。
请添加您的wsServe
方法的代码,以便我们可以看到您传递给模板的值。我稍后再回答。