英文: How to have an optional query in GET request using Gorilla Mux? 问题 我想让我的一些查询参数变成可选的。目前,我有以下代码: r...
Websocket send to specific client instead broadcast
英文: Websocket send to specific client instead broadcast 问题 你想修改大猩猩聊天示例,使其能够向特定客户端发送消息,而不是广播给所有客户端。首先...
如何确保在Golang的gorilla WebSocket包中实现并发性?
英文: How to ensure concurrency in Golang gorilla WebSocket package 问题 我已经研究了gorilla/websocket包的Godoc。...
Golang的JSON路由配置
英文: Golang JSON config for routes 问题 我一直在尝试设置一个JSON配置文件来为我的应用程序设置动态路由。我的想法是,根据使用该服务的人,我将能够设置自己的URL结构...
Golang Gorilla Websocket在120秒后停止接收信息。
英文: Golang Gorilla Websocket stops receiving information at 120 seconds 问题 我目前正在尝试连接到CEX.IO比特币交易所的We...
在gorilla/mux框架中使用Go协程(Go routines)
英文: Using Go routines in gorilla/mux framework 问题 我们正在使用gorilla mux框架来处理Web请求,我认为它会自动在所有CPU核心上运行。在这种...
无法使用基本身份验证保护gorilla/mux子路由。
英文: Unable to protect gorilla/mux Subroute with basic auth 问题 我正在尝试使用gorilla/mux创建路由,其中一些路由应该受基本身份验证...
在嵌套的Gorilla子路由器中,Negroni中间件中设置的请求上下文会丢失。
英文: Request context set in negroni middleware is lost in nested gorilla Subrouter 问题 我的基本main设置: mux...
Gorilla mux,最好的“捕获”响应代码的方法是什么?
英文: Gorilla mux, best way to 'catch' response codes 问题 我正在使用Gorilla mux进行路由。现在我的应用程序运行良好,我想找...
允许使用gorilla handlers的来源
英文: Allowing origins using gorilla handlers 问题 我目前正在编写一个 RESTful Web 服务器,并希望从 Angular2 前端进行测试。由于在开发过...
23