我已经学习了一段时间的快速类(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-推荐答案 strong>
如果我没看错,你是在问这两行代码有什么区别(你将其描述为“完全相同”:
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/
|