ResponseWriter 和 Request Golang 中的 r 和 w

发布于 2025-01-11 18:29:32 字数 175 浏览 0 评论 0原文

这是一个有点愚蠢的问题,但我想问我可以在 w http.ResponseWriter, r *http 中使用任何名称来代替 rw .Request 还是应该始终是 rw

谢谢

This is a bit a silly question but I wanted to ask that can I use any name instead of r and w in the w http.ResponseWriter, r *http.Request or should it be r and w always?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

机场等船 2025-01-18 18:29:32

参数名称并不重要,只需遵守函数签名即可

func (firstParameter http.ResponseWriter, secondParameter http.ResponseWriter)

It doesn't matter the name of the parameter, you just need to obey the function signature

func (firstParameter http.ResponseWriter, secondParameter http.ResponseWriter)
落花浅忆 2025-01-18 18:29:32

我相信您问的是,使用 rw 是否符合习惯。我不认为是这样。只要您给参数提供合理的名称(即它们不妨碍可读性)就可以了。

I believe what you asking is, is it idomatic to use r and w. I don’t think it is. So long as you give the parameters reasonable names (i.e. they don’t hinder readability) you are fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文