动态Json字符串的解析 对于传统的Json字符串,比如有规定属性的对象,通常都会采用反序列化的方式就可以了,例如下面的方式: DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T)); MemoryStream ms = newMemoryStream(Encoding.UTF8.GetBytes(jsonString)); T obj = (T)ser.ReadObject(ms); 但是有时候会出现…
var storeArray=new Array(); $("input[name='storeid']").each(function(i){ var curStoreObj = {}; var curStoreId = $(this).val(); curStoreObj.storeId = curStoreId; if(curStoreId){ var curStoreMoney = $("#"+curStoreId+"storeMoney"…