我正在制作一个关于在网站上使用api的应用程序。这是一个火车时刻表应用程序。我在将数据从一个ViewController发送到另一个ViewController时遇到了麻烦。问题是,当执行代码“self.trainNo.append(data2.intValue)”和“prepare(…)”时,为什么我创建的全局变量(trainNo)没有传递给另一个VC。
我使用print语句进行调试。我发现当按下按钮时,首先执行Alamofire请求语句中的print语句“print(self.trainNo)”,然后执行Alamofire请求语句中的“print(self.trainNo)”。我不知道为什么会这样。
我试着在不同的地方使用打印语句。

@IBAction func buttonPressed(_ sender: Any) {


    APIUrl = "https://ptx.transportdata.tw/MOTC/v2/Rail/TRA/DailyTimetable/OD/"+"\(startStationNo)"+"/to/"+"\(endStationNo)"+"/"+"\(selectedDate)"+"?$top=30&$format=JSON&$orderby=OriginStopTime/ArrivalTime"

    let request = setUpUrl(APIUrl: APIUrl)

    print("\(APIUrl)")

    Alamofire.request(request).responseJSON { response in
        do{
            let json: JSON = try JSON(data: response.data!)

            if let result = json.array {
                for data in result {

                    let data2 = data["DailyTrainInfo"]["TrainNo"]
                    self.trainNo.append(data2.intValue)
                    print(self.trainNo)

                }
            }
            else{
                print("ERROR in data2")
            }

        }
        catch{
            print("ERROR in json \(error)")
        }
    }
    print(self.trainNo)

}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.destination is TimeTableController {
        let vc = segue.destination as? TimeTableController
        vc?.trainNo = self.trainNo
        print(self.trainNo)
    }
}

我希望trainNo的值将被更改并传递给另一个VC。
但没用。
实际结果:
[]/“打印(self.trainNo)”按钮
[]/“print(self.trainNo)”在prepare中
[101]
......
[101、3147、371、3157、3167、1]//这些是“打印(self.trainNo)”Alamofire中的循环
这意味着Alamofire请求和循环在打印语句之后执行,我不知道发生了什么。

最佳答案

因为请求是异步的,所以需要在回调中使用self.performSegue(withIdentifier

@IBAction func buttonPressed(_ sender: Any) {


    APIUrl = "https://ptx.transportdata.tw/MOTC/v2/Rail/TRA/DailyTimetable/OD/"+"\(startStationNo)"+"/to/"+"\(endStationNo)"+"/"+"\(selectedDate)"+"?$top=30&$format=JSON&$orderby=OriginStopTime/ArrivalTime"

    let request = setUpUrl(APIUrl: APIUrl)

    print("\(APIUrl)")

    Alamofire.request(request).responseJSON { response in
        do{
            let json: JSON = try JSON(data: response.data!)

            if let result = json.array {
                for data in result {

                    let data2 = data["DailyTrainInfo"]["TrainNo"]
                    self.trainNo.append(data2.intValue)
                    print(self.trainNo)

                }

                // this will trigger the segue
                self.performSegue(withIdentifier: "segueName", sender: nil)
            }
            else{
                print("ERROR in data2")
            }

        }
        catch{
            print("ERROR in json \(error)")
        }
    }
    print(self.trainNo)

}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.destination is TimeTableController {
        let vc = segue.destination as? TimeTableController
        vc?.trainNo = self.trainNo
        print(self.trainNo)
    }
}

把segue的源连接到vc本身而不是按钮,顺便说一句,你可能需要在请求之前显示活动指示器作为一个好的用户体验,所以用户希望它是一个网络操作

07-24 17:23