我正在尝试编写一个函数,但这里的问题让我感到惊讶。userGroup.Use( middleware.BasicAuth(func(username, password string, c echo.Context) (bool, error) { if username == "joe" && password == "123"{ return true, nil } return false, nil }) // <- error happens here )userGroup.Use( middleware.BasicAuth(func(username, password string, c echo.Context) (bool, error) { if username == "joe" && password == "123"{ return true, nil } return false, nil })) // <- !!花了一个小时来解决一个错误,但结果是最后一个右括号不能随意浮动。这是分号、逗号或缩进的问题吗? 我记得 JS 不关心这种东西我得到的错误是:missing ',' before newline in argument list |syntax
1 回答
大话西游666
TA贡献1817条经验 获得超14个赞
这是 Golang 分号规则的结果:https ://go.dev/doc/effective_go#semicolons ,其中 Go 在扫描源代码时添加了一个分号,因此原始源代码没有分号。
遵循“如果换行符出现在可以结束语句的标记之后,插入分号”的规则,您之前的代码如下所示:
userGroup.Use(
middleware.BasicAuth(func(username, password string, c echo.Context) (bool, error) {
if username == "joe" && password == "123"{
return true, nil
}
return false, nil
}); // <- semicolon added here
)
这当然是错误的并导致错误。移动该行的右括号而不是修复该问题。
- 1 回答
- 0 关注
- 66 浏览
添加回答
举报
0/150
提交
取消