C Json JsonProperty 常用屬性

2021-10-02 06:24:23 字數 1029 閱讀 6932

public class testdatalistentity

[jsonproperty(nullvaluehandling = nullvaluehandling.ignore)]

public string testname

[jsonproperty(nullvaluehandling = nullvaluehandling.ignore)]

public string testremarks

[jsonproperty(nullvaluehandling = nullvaluehandling.ignore)]

public datetime? testtime

}

1、[jsonproperty(nullvaluehandling = nullvaluehandling.ignore)]

控制:如果值為空的話,轉換json時候不出現

2、值型別(int bool datetime)等值型別需要加問號?不賦值的json轉換不出現

class elasticsearchresponsehit****s

[jsonproperty("_type")]

public string type

[jsonproperty("_id")]

public string id

[jsonproperty("_score")]

public decimal? score

[jsonproperty("_source")]

public t source

}

3、新增jsonproperty屬性

json的序列化對外顯示是_index,**內部使用自定義欄位名稱index

4、將列舉序列化為字串的方法

[jsonconverter(typeof(stringenumconverter))]

public checktypeenum checktype

XMLHttpRequest物件的常用屬性和方法

xmlhttprequest 物件的三個常用的屬性 1.onreadystatechange 屬性 onreadystatechange 屬性存有處理伺服器響應的函式。下面的 定義乙個空的函式,可同時對 onreadystatechange 屬性進行設定 2.readystate 屬性 readys...

Editext的inputType常用屬性

多行輸入,回車鍵為換行,無其他功能 inputtype填入屬性後,預設singleline true 效果,這裡除外 text 普通 textpassword 不可見密碼 textcapcharacters 字母大寫 textcapwords 首字母大寫 textcapsentences 僅第乙個字...

XMLHttpRequest物件的常用屬性與方法

一,open 書上解釋 用於設定請求的目標url請求方法,以及其他引數資訊 個人理解 傳送請求的頁面在不重新整理的情況能將引數傳給乙個伺服器進行處理,這個方法就是將這些個引數傳送過去 引數 1,method 用於指定請求的型別 get 或者 post 2,url 用於請求的位址,可相對可絕對 3,a...