在这种情况下,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

        })  // <- 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


慕虎7371278
浏览 67回答 1
1回答

大话西游666

这是 Golang 分号规则的结果:https ://go.dev/doc/effective_go#semicolons ,其中 Go 在扫描源代码时添加了一个分号,因此原始源代码没有分号。遵循“如果换行符出现在可以结束语句的标记之后,插入分号”的规则,您之前的代码如下所示:userGroup.Use(&nbsp; &nbsp; &nbsp; &nbsp; middleware.BasicAuth(func(username, password string, c echo.Context) (bool, error)&nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if username == "joe" && password == "123"{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return true, nil&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return false, nil&nbsp; &nbsp; &nbsp; &nbsp; });&nbsp; // <- semicolon added here&nbsp; &nbsp; )这当然是错误的并导致错误。移动该行的右括号而不是修复该问题。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go