ios第二種post請求

2021-08-20 13:29:40 字數 2240 閱讀 7970

//請求部分

nsurl 

*url=[

nsurl

urlwithstring:[

porturl

@"/gt/ajax-validate5"

]];// 2.建立乙個網路請求,分別設定請求方法、請求引數

nsmutableurlrequest*request =[nsmutableurlrequest

requestwithurl

:url];

[request settimeoutinterval:10.0f];//超過這個時間就算超時,請求失敗

converttojsondata:parameters];//函式

// 3.獲得會話物件

nsurlsession*session = [nsurlsession

sharedsession

];// 4.根據會話物件,建立乙個task任務

nsurlsessiondatatask *sessiondatatask = [session datataskwithrequest:request completionhandler:^(nsdata * _nullable data, nsurlresponse * _nullable response, nserror * _nullable error) else else

}}];

[sessiondatatask resume];

//函式

- (nsstring *)converttojsondata:(nsdictionary *)dict else

nsmutablestring*mutstr = [nsmutablestring

stringwithstring

:jsonstring];

[mutstr stringbytrimmingcharactersinset:[

nscharacterset

whitespacecharacterset]];

//去掉字串中的空格

nsrange range2 = ;

[mutstr replaceoccurrencesofstring:

@"\n"

withstring:

@" "

options:nsliteralsearchrange:range2];

//去掉字串中的換行符

return mutstr;

}

uniapp介面請求(第二種)

1.新建config資料夾 index.js檔案 檔案內容 1.新建api資料夾 api.js資料夾 檔案內容 1 import baseurl from config index.js 引入 字首檔案2 得到傳來的引數 用params來接收 3 module.exports params 8 le...

Qt 第二種執行緒

流程 工程目錄 新增在這裡作為全域性 namespace ui class mywidget public qwidget endif mywidget h mythread.cpp include mythread.h include 待會用到sleep函式 include mythread my...

分頁的第二種方式

優點 1.十分簡潔 缺點 1.不能及時響應資料庫中變化 2.重複查詢較多,每獲取乙個屬性 總頁數 都要查詢資料庫 將某一頁的資料直接封裝在此類中,調乙個方法便可獲取資料。public class fengye 計算頁數 public int gettotalpages int count,int p...