转义闭包捕获非转义参数 'function' Xcode 说

Escaping closure captures non-escaping parameter 'function' Xcode says

我正在尝试在两个 API 请求完成后执行 segue,并且我拥有我需要的所有数据。我正在尝试这样做,因为请求需要很长时间。然而,当我尝试做这样的事情时 ,我得到了这些错误:

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'

我在出现错误的地方添加了注释。这是我的代码:

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)

提前致谢。

我做了下面的代码,它按我预期的那样工作! (但不太干净)

        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)