英文: Copy a file from client to server via rest end point using golang 问题 我想通过服务器暴露的 REST 端点将文件从客户端复制...
为什么GorillaMux不允许我将URL作为参数传递进去?
英文: Why is GorillaMux not allowing me to pass in a URL as a parameter? 问题 我正在构建一个URL缩短器API,并尝试使用Gori...
如何在go-restful中绑定一个处理程序?
英文: How to bind a handler in go-restful? 问题 Go-restful是一个很好且易于使用的Go RESTful风格框架,但是我对其中的一些内容有疑问(这只是一段...
Golang Godog REST API 测试失败
英文: Golang Godog REST API Test fails 问题 过去两周我一直在研究GODOG,这是一个类似于Golang的黄瓜行为驱动开发(BDD)工具。我觉得它非常有趣,最近我花了...
根据用户角色控制字段可见性
英文: Control field visibility depending on User role 问题 我想根据用户角色来隐藏/显示模型的某些字段。 实现这个功能最常用的方式是什么? 我不想创建...
HTTP status code in GET Method of REST api design
英文: HTTP status code in GET Method of REST api design 问题 我正在学习有关REST API设计的最佳实践,并编写了一个处理GET /cities ...
从POST请求中获取文本的方法是使用Go Gin-Gonic框架。
英文: Go Gin-Gonic, get text from POST request 问题 我正在开发一个使用Go和Gin-Gonic包的REST API。我的想法是创建一个REST API,它接...
golang gin-gonic和在包中拆分文件
英文: golang gin-gonic and splitting files in package 问题 我对Go语言还不太熟悉,但我会尽力帮助你理解代码中的问题。根据你提供的代码,我看到了一些可...
What's a clean solution for supporting dynamic struct fields in Go?
英文: What's a clean solution for supporting dynamic struct fields in Go? 问题 计划重构去年构建的应用程序的代码库。假设我...
Go REST Api中的角色和权限
英文: Roles and permissions in Go REST Api 问题 我正在使用Go语言开发一个REST API,它正在实现JWT,遵循这个模式: 我有一个中间件来验证令牌,但我的问...
65