• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 类型的值没有成员

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:17:10 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我已经学习了一段时间的快速类(class),并跟随在线 tuts。大多数问题我都能找到,但我可以在这个问题上使用一些帮助。

在一个应用中,我们正在处理用户通过 Firebase FIRAuth 登录时可能发生的错误,我的代码如下所示:

class AuthService {

private static let _instance = AuthService()

static var instance: AuthService {
    return _instance
}

func login(email: String, password: String, onComplete: Completion?) {
    FIRAuth.auth()?.signIn(withEmail: email, password: password, completion: {(user, error) in

        if error != nil {

            if let errorCode = FIRAuthErrorCode(rawValue: error!.code)  {
                if errorCode == .errorCodeUserNotFound {
                    FIRAuth.auth()?.createUser(withEmail: email, password: password, completion: {(user, error) in
                        if error != nil {
                            self.handleFirebaseError(error: error!, onComplete: onComplete)
                        } else {
                            if user?.uid != nil {
                                //Sign in
                                FIRAuth.auth()?.signIn(withEmail: email, password: password, completion: {(user, error)
                                in
                                    if error != nil {
                                        self.handleFirebaseError(error: error!, onComplete: onComplete)
                                    } else {
                                        onComplete?(errMsg: nil, data: user)
                                    }
                                })
                            }
                        }
                    })
                }
            } else {
                self.handleFirebaseError(error: error!, onComplete: onComplete)
            }
        } else {
            onComplete?(errMsg: nil, data: user)
        }

    })
}

func handleFirebaseError(error: NSError, onComplete: Completion?) {
    print(error.debugDescription)
    if let errorCode = FIRAuthErrorCode(rawValue: error.code) {

        switch(errorCode) {
        case .errorCodeInvalidEmail:
            onComplete?(errMsg: "Invalid email adress", data: nil)
            break
        case .errorCodeWrongPassword:
            onComplete?(errMsg: "Invalid password", data: nil)
            break
        case .errorCodeEmailAlreadyInUse, .errorCodeAccountExistsWithDifferentCredential:
            onComplete?(errMsg: "Email already in use", data: nil)
            break

        default:
            onComplete?(errMsg: "There was a problem authenticating, try again", data: nil)
            break
        }

}

在编译时,我在第一个函数中遇到错误:

if let errorCode = FIRAuthErrorCode(rawValue: error!.code)

说“'错误'类型的值没有成员'代码'”。第二个函数使用完全相同的代码行,但没有错误。我尝试了各种方法,例如打开包装或不打开包装。

例如,添加一个 0 可以让代码编译,但一旦出现错误就会中断。

提前感谢您的宝贵时间!



Best Answer-推荐答案


如果我没看错,你是在问这两行代码有什么区别(你将其描述为“完全相同”:

if let errorCode = FIRAuthErrorCode(rawValue: error!.code)  {
if let errorCode = FIRAuthErrorCode(rawValue: error.code) {

当打印在一起时,差异变得明显。在第一行中,error! 表示错误在该点永远不能为零。因此,如果是,您会收到运行时错误。在第二行中,error 可以为 nil,如果是,那么 let 语句将通过 else 或下一个适用的语句。

一般来说,避免使用 !在你的代码中强制使用非零值,除非你 101% 确定它总是如此。

关于ios - 类型的值没有成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38990908/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap