使用alamofire处理Json响应

路易·巴卡里

我正在使用IOS登录应用程序,但是我不知道如何处理服务器的Json响应,我想编写一个依赖于服务器响应的布尔函数:如果用户名和密码正确:

SUCCESS: {
    users =     (
                {
            email = test;
            id = 1;
            money = 200;
            password = test;
            username = test;
        }
    );
}

如果用户名和密码错误:

SUCCESS: {
    users =     (
    );
}

这是我用NodeJs编写的后端代码:

app.get('/login/:username/:password',(req,res)=>{
    let user = req.params;
    var sql = "SELECT * FROM  users WHERE username = ? And password = ? ";
    mysqlConnection.query(sql,[user.username,user.password],
    function(err, rows){
        if(!err){    

       res.send(JSON.stringify({"users" : rows}));
}
 else {
console.log(err)
         }
    }

这是我的迅速功能:

   class func login(username : String , password : String, _ completion: @escaping (Bool) -> ()) {
        let url = "http://127.0.0.1:3000/login/"+username+"/"+password
        Alamofire.request(url).responseJSON{response in
            switch response.result
            {
            case .failure:
    print(response)
    completion(false)
            case .success:
                //I want to handle the response here
                //return true if the username and password are right
                //return wrong if not
    print(response)
    completion(true)

            }
        }
}
恩卡·博尔斯

使用上面的代码:

func CallAPI(){

    let parameters: [String: Any] = [
        "Username": "Admin",
        "Password": "123456",
        "Language_Code": "EN"]


    Alamofire.request("Your API Url", method: .post, parameters: parameters, encoding: JSONEncoding.default)
        .responseJSON { response in

            if((response.result.value) != nil) {

                let ResultJson = JSON(response.result.value!)

                print("ResultJson==",ResultJson)

                let UserCount = ResultJson["users"].count

                if UserCount > 0 {

                    // Do with your above code

                    let Email =  ResultJson["users"]["email"].stringValue
                    let id =  ResultJson["users"]["id"].intValue
                    let money =  ResultJson["users"]["money"].intValue
                    let password =  ResultJson["users"]["password"].stringValue
                    let username =  ResultJson["users"]["username"].stringValue
                }
            }
    }
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章