美文网首页
使用 Alamofire 网络请求设置body为json

使用 Alamofire 网络请求设置body为json

作者: 会飞的大西瓜v | 来源:发表于2018-05-02 12:07 被阅读568次
    let urlString = "  "
            let json = "{\"offset\":0,\"limit\":5}"
            let url = URL(string: urlString)!
            let jsonData = json.data(using: .utf8, allowLossyConversion: false)!
    
            var request = URLRequest(url: url)
            request.httpMethod = HTTPMethod.post.rawValue
            request.setValue("application/json", forHTTPHeaderField: "Content-Type")
            request.httpBody = jsonData
    
            Alamofire.request(request).responseJSON {
                (response) in
    
                if response.result.isSuccess {
                    let json = JSON(response.data!)
                    print(json)
    
                } else {
    
                }
            }

    相关文章

      网友评论

          本文标题:使用 Alamofire 网络请求设置body为json

          本文链接:https://www.haomeiwen.com/subject/fmaqrftx.html