在这种情况下,Go 在句法上有什么问题?
What is the problem of Go in this context syntactically?
我正在尝试编写一个函数,但这里的问题让我感到惊讶。
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
这是 Golang 的 semi-colon 规则的结果: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
)
这当然是错误的,会导致错误。移动该行的右括号可以解决这个问题。
我正在尝试编写一个函数,但这里的问题让我感到惊讶。
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
这是 Golang 的 semi-colon 规则的结果: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
)
这当然是错误的,会导致错误。移动该行的右括号可以解决这个问题。