简体   繁体   English

转义闭包捕获非转义参数“函数”Xcode 说

[英]Escaping closure captures non-escaping parameter 'function' Xcode says

I'm trying to perform a segue after two API requests are complete, and I have all the data I need.我正在尝试在两个 API 请求完成后执行 segue,并且我拥有所需的所有数据。 I'm trying do this because the requests take a bit long.我正在尝试这样做,因为请求需要很长时间。 However, when I tried to do something like this post , I got these errors:但是,当我尝试执行类似这篇文章的操作时,出现了以下错误:

1. Passing a non-escaping function parameter 'anotherFunc' to a call to a non-escaping function parameter can allow re-entrant modification of a variable
2. Escaping closure captures non-escaping parameter 'anotherFunc'
3. Escaping closure captures non-escaping parameter 'function'

I added comments where the errors show up.我在出现错误的地方添加了评论。 Here's my code:这是我的代码:

func getUsernameRequest(function: () -> Void) {
            // send an API request to get the userinfo
            let url = "\(K.API.baseAPIEndpoint)/user"
            let headers: HTTPHeaders = [...]
            AF.request(url, headers: headers).responseDecodable(of: UserModel.self) { response in // this is where the #3 error shows up
                if let value = response.value {
                    self.username = value.username
                    // and do other things
                    function()
                } else {
                    offlineBanner()
                }
            }
        }
        
        func getMessagesRequest(function: (()->Void)->Void, anotherFunc:()->Void) {
            let postDetailUrl = "\(K.API.baseAPIEndpoint)/posts/\(postArray[indexPath.row].id)"
            let headers: HTTPHeaders = [...]
            // send an API request to get all the associated messages
            AF.request(postDetailUrl, headers: headers).responseDecodable(of: PostDetailModel.self) { response in // this is the #2 error shows up
               if let value = response.value {
                   self.messages = value.messages
                   function(anotherFunc) // this is where the #1 error shows up
               } else {
                   offlineBanner()
               }
            }
        }
        
        func performSegueToChat() -> Void {
            self.performSegue(withIdentifier: K.Segue.GotoChat, sender: self)
        }
        
        getMessagesRequest(function: getUsernameRequest, anotherFunc: performSegueToChat)

Thank you in advance.先感谢您。

I did this the following code, and it works as I expected!我做了以下代码,它按我的预期工作! (But they aren't too clean) (但它们不太干净)

        func getUsernameRequest(function: @escaping() -> Void) {
            // send an API request to get the username
            let url = "\(K.API.baseAPIEndpoint)/user"
            AF.request(url, headers: headers).responseDecodable(of: GetUsernameModel.self) { response in
                    if let value = response.value {
                        self.username = value.username
                        function()
                    } else {
                        offlineBanner()
                    }
                }
        }
        
        func getMessagesRequest(function: @escaping(@escaping()->Void)->Void, anotherFunc: @escaping()->Void) {
            let postDetailUrl = "\(K.API.baseAPIEndpoint)/posts/\(postArray[indexPath.row].id)"
            // send an API request to get all the associated messages and put them into messages array
            AF.request(postDetailUrl, headers: headers).responseDecodable(of: PostDetailModel.self) { response in
                if let value = response.value {
                    self.messages = value.messages
                    function(anotherFunc)
                } else {
                    offlineBanner()
                }
            }
        }
        
        func performSegueToChat() -> Void {
            self.performSegue(withIdentifier: K.Segue.GotoChat, sender: self)
        }
        
        getMessagesRequest(function: getUsernameRequest, anotherFunc: performSegueToChat)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM