/**
所有網路請求
,統一使用非同步請求!
在今後的開發中
,如果使用簡單的
get/head請求,
可以用nsurlconnction
非同步方法
get查/post
增/put
改/delete
刪/head
get
1> url
2> nsurlrequest
3> nsurlconnction 非同步
從firebug
直接貼上
,或者自己寫
變數名1=數值
1&變數名
2=數值2
3> nsurlconnction 非同步
*/override
func
viewdidload()
func
postlogon()
catch
// 將字串轉換成資料
//#pragma mark - post登入
func
posttoken()
catch
// 將字串轉換成資料
// 3. 連線,
非同步 nsurlconnection
.sendasynchronousrequest
(request, queue:
nsoperationqueue
())
catch //
將str
轉換為字典 //
// } //
取data的值
vardata:
nsdictionary
= dict![
"data"
] as
! nsdictionary //
取token的值
vartoken = data[
"token"]as
! string
(token)
} }
} }
iOS開發網路篇 GET請求和POST請求
一 get請求和post請求簡單說明 建立get請求 1 1.設定請求路徑 2 nsstring urlstr nsstring stringwithformat self.username.text,self.pwd.text 3 nsurl url nsurl urlwithstring url...
iOS開發網路篇 GET請求和POST請求
一 get請求和post請求簡單說明 建立get請求 1 1.設定請求路徑 2 nsstring urlstr nsstring stringwithformat self.username.text,self.pwd.text 3 nsurl url nsurl urlwithstring url...
ios開發網路篇 Get請求和Post請求
一.get請求和post請求簡單說明 建立get請求 1.設定請求路徑 nsstring urlstr nsstring stringwithformat self username text,self pwd text nsurl url nsurl urlwithstring urlstr 2....