iOS post乙個json字串到伺服器 評論

2021-07-10 19:54:23 字數 428 閱讀 1377

1,把字典轉化為nsdata

nserror * error  ;

nsdata * jsondata = [nsjsonserialization datawithjsonobject:self.postdic options:nsjsonwritingprettyprinted error:&error] ;

self.postdic 為一開始整合完資料得到的字典  

2,把nsdata轉化為nsstring

nsstring * jsonstring = [[nsstring alloc]initwithdata:jsondata encoding:nsutf8stringencoding] ;

3,把得到的jsonstring post給伺服器就行了    有時候服務端需要這個jsonstring作為value傳給他 也就是  傳給他

qt解釋json字串的乙個bug

最近使用qt 我用的是qt5.6 解析json字串,發現qt的乙個bug,如下 if defined msc ver msc ver 1600 pragma execution character set utf 8 endif int qtjsontest return 1 int jsoncpp...

乙個簡單的json例子

名稱 年齡郵箱 response.setcontenttype text html charset utf 8 response.setheader cache control no cache jsonobject json new jsonobject try json.put jobs mem...

如何轉殖乙個json物件

定義乙個json物件 jobject job new jobject job age 13 job male context.response.write job job.tostring 輸出結果為 job jobject j clone new jobject j clone jobject j...