API からデータを取得しようとしていて、API からの応答を印刷しようとすると、正常に印刷され、オブジェクトからデータを印刷しようとすると、正常に印刷されましたが、変数の出席者を確認したときにAPIService
、値は常にnilです。そのため、UI で値を渡すと、値もnilに変わります。JSON からデータを取得して、Api Service の出席者に反映するにはどうすればよいですか。私はこれについてあまりにも困惑しています。私を助けてください。ありがとうございました。
API サービスの getParticipant 関数
func getParticipants(passcode: String,
participantType: ParticipantType,
successBlock: @escaping (Attendees?) -> Void,
failureBlock: @escaping (Error) -> Void)
{
let attendeesURL = URL(string: "\(GET_PARTICIPANTS_URL)/\(passcode)/\(participantType)")
Alamofire.request(attendeesURL!, method: .get).responseJSON { (response) in
print(response)
if let error = response.error
{
failureBlock(error)
return
}
if let attendeeJSON = response.result.value as? [Dictionary<String, Any>],
let attendeeObj = attendeeJSON.first {
print(attendeeObj)
let attendees = Attendees.init(JSON: attendeeObj)
successBlock(attendees)
}
}
}
}
APIService の出席者が nil であるため、データを受け入れる必要がある UI の出席者も nil になります。
var passcode = ""
var attendees = [Attendees]()
@IBAction func submitButton(_ sender: UIButton) {
//readvalues
passcode = passcodeLabel.text!
//check if empty
if(passcode.isEmpty)
{
_ = SCLAlertView(appearance: appearance).showError("Ooops!", subTitle: "Please input valid event code.")
} else {
getParticipants()
}
}
//GET PARTICIPANTS FUNCTION
func getParticipants() {
// var participantType: ParticipantType!
let api = APIService(APIKey: passcode)
api.getParticipants(passcode: passcode, participantType: .all, successBlock: { (attendees) in
if let attendeesArray = attendees {
self.attendees = [attendeesArray]
do {
DispatchQueue.main.async{
_ = SCLAlertView(appearance: appearance).showError("Message", subTitle: "Details:\(self.attendees)")
return
}
}
}
}) { (error) in
DispatchQueue.main.async{
_ = SCLAlertView(appearance: appearance).showError("Network Error", subTitle: "Network Error:\(error)")
return
}
}
サンプル JSON
[
{
"event_name": "Laugh Trip",
"event_participants": [
{
"participant_id": "6f1e7fd5-6da9-4d5b-bc91-4771aeaa5235",
"employee_number": "",
"last_name": "name",
"first_name": "name",
"middle_name": "",
"display_name": "name, name ",
"department_name": "IT",
"position_name": "Application Developer",
"registered_flag": true,
"registered_datetime": "2018-07-16T14:51:57.813",
"registration_type": 1,
"delete_flag": false,
"manual_reg_flag": false,
"out_flag": true,
"out_datetime": "2018-07-16T14:54:00.000",
"classification": 1,
"others": ""
},