英文: Should I send new or old Context object to 3rd party gRPC API within my own gRPC server? 问题 我们有一...
如何在不阻塞服务器的情况下向客户端发送数据通过TCP?
英文: How to send data to a client over tcp without blocking the server? 问题 我正在编写一个游戏服务器,由于这是我第一次,我一直在...
Golang将文件的名称传递给浏览器/客户端。
英文: Golang communicating the name of the file served to the browser/client 问题 我正在使用golang动态地提供一些文件,并...
具有多个用户的服务器实例
英文: Server instances with multiple users 问题 我是你的中文翻译助手,以下是你提供的代码的翻译: 我刚开始学习Go,并且遇到了以下问题。我试图简化它: 我有一个...
在Golang中是否可以获取需要JS的网页?
英文: Is it possible to get a webpage that requires JS in Golang? 问题 创建一个微服务,获取一些网站的主页面HTML。其中一个网站会检查是...
调用http.ResponseWriter.Write()时检查错误。
英文: Check errors when calling http.ResponseWriter.Write() 问题 假设我有这个 HTTP 处理程序: func SomeHandler(w ht...
保持Go服务器作为后台进程运行
英文: Keep running Go Server as background process 问题 我想要无论是否发生错误,都能保持我的 Golang 语言 Web 服务器运行。如何让它始终保持运...
How do I serve CSS and JS in Go
英文: How do I serve CSS and JS in Go 问题 我按照《Go编写Web应用程序》教程进行操作,但出现了一些问题,无法使应用程序提供CSS和JS。如果我在不运行Go服务器的...
Golang如何多次读取请求体?
英文: Golang read request body multiple times 问题 我正在编写自己的日志中间件。基本上,我需要记录请求和响应的主体。我遇到的问题是,当我读取主体时,它变为空,...
有没有更好的方法来限制“门口”的请求?
英文: Is there a better way limit requests at the "door"? 问题 现在我正在测试一个在我的AWS生产区域中非常简单的信号量。在部...
19