代码拉取完成,页面将自动刷新
/**
@author: administrator
@date: 2020/12/4
@note:
**/
package main
import (
"fmt"
"net/http"
"websocket/server"
)
var (
Port = 7777
)
func main() {
//定义 ws的连接方法
http.HandleFunc("/ws",server.WsHandler)
//注册 html 文件的访问
http.Handle("/",http.FileServer(http.Dir("./html")))
//注册普通图片显示
http.Handle("/img/",http.StripPrefix("/img/",http.FileServer(http.Dir("./html/image"))))
//注册头像遍历接口
http.HandleFunc("/api/avaterlist",server.GetAvaterList)
fmt.Println(fmt.Sprintf("服务器启动成功,地址:http://127.0.0.1:%d",Port))
http.ListenAndServe(fmt.Sprintf(":%d",Port),nil)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。