类型的值没有成员

时间:2016-08-17 07:47:35

标签: ios swift

我一直在跟踪一个快速的课程,并跟随在线的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可以让代码编译,但是一旦出现错误就会中断。

提前感谢您的时间!

2 个答案:

答案 0 :(得分:0)

如果我正确地阅读此内容,您就会问这两行代码之间有什么区别(您将其描述为"完全相同"

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

当一起打印时,差异变得明显。在第一行error!表示此时错误绝不能为零。因此,如果是,则会出现运行时错误。在第二行error可以是nil,如果是,则let语句将落在else或下一个适用的语句中。

作为一般规则,请避免使用!在您的代码中强制使用非零值,除非您确定101%肯定是这种情况。

答案 1 :(得分:0)

好的,所以改变错误!.code错误!._代码解决了我的问题。谢谢各位回应,并试图弄明白这一点,非常感谢。