#import "viewcontroller.h"
@inte***ce
viewcontroller ()
@end
@implementation
viewcontroller
- (void)viewdidload
- (void)touchesbegan:(nsset*)touches withevent:(uievent *)event ;
/*- top level object is an nsarray or nsdictionary 頂級節點必須是資料或者字典
- all objects are nsstring, nsnumber, nsarray, nsdictionary, or nsnull 所有物件都必須是這幾個型別
- all dictionary keys are nsstrings 字典的key值必須是strng型別
- nsnumbers are not nan or infinity
*///nil 0x0
// null 沒有 long long value方法
nsarray *jsons = @[@1,@2,[nsnull null],@"hello"];
// 如果使用陣列包裝了,雖然能上傳,但是返回的結果並不是我們想要的字典
// nsstring *json = @"";
// 驗證一下,是否符合json格式的要求
if (![nsjsonserialization isvalidjsonobject:jsons])
// 從物件轉化成json資料
// obj 就是要轉成json的物件,必須是陣列或者字典
nsdata *data = [nsjsonserialization datawithjsonobject:jsons options:0 error:null];
// 向伺服器提交乙個json
Android 提交資料到伺服器
前幾篇部落格都是說怎麼從伺服器裡拿資料,今天就講講怎麼提交資料到伺服器上。大致有兩種方式,一種是底層做法,getpost方法 還有一種是第三方asynchttpclient框架 xmlns android xmlns tools android layout width match parent a...
Git 提交本地工程到伺服器
1.首先在git伺服器上建立初始專案,並記錄ssh位址 如 2.進入本地專案目錄,依次執行下面命令 git init 初始化本地倉庫 git add 或新增需要提交的檔案 git commit m init project 提交到本地倉庫 git remote add origin 和遠端倉庫專案進...
JSON伺服器示例
此json伺服器示例是2017年中重寫的文章系列的一部分,其中包含最新資訊和最新示例。json server是前端開發人員常用的工具,可以在不到一分鐘的時間內快速設定完全偽造的rest api。您需要先通過npm安裝它 npm install global json server接下來,將一些資料儲...