swift post请求参数类型为json

前端之家收集整理的这篇文章主要介绍了swift post请求参数类型为json前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

var url:String="http://******"

var roomDic=Dictionary<String,String>()

roomDic["roomId"]=“fff”

roomDic["roomPassword"]="123456"

post(url,roomDic)


func post(url:String,paramDic:Dictionary<String,String>){

Alamofire.request(.POST,url,parameters:paramDic,encoding: .JSON)

.responseJSON{response in

debugPrint(response)

}

}



抓包显示的参数类型为{“roomId”:"fff","roomPassword":"12344"};

看到这可爱的json 参数我真是的是太爽了,找了好久终于找到了,好强大的的Alamofire(在github 查找这个第三方库,不知道怎么用可以看我之前的博客),看看我之前写的字符串转json 真是太痛苦了,哈哈哈。

原文链接:https://www.f2er.com/swift/325386.html

猜你在找的Swift相关文章