js編輯格式化資料

2021-08-18 15:49:09 字數 759 閱讀 8139

var nowdata = ,currentdate="",currentyear="",currentmonth="";

/** 獲取當前的時間

*/currentdate = new date();

//獲取當前的年份

currentyear = currentdate.getfullyear();

//獲取當前月份

currentmonth = currentdate.getmonth() + 1;

//獲取格式化好的資料

function getnewdata(content),,,];

nowdata = ;

for(var i = 0;i < content.length;i++)else

/***如果當前年 等於 返回的資料的年 ,就判斷當前月份和返回的月份是否一致 如果一致,就顯示 「本月」,如果不一致,就顯示 「2023年2月」

* * 如果當前年 不等於 返回資料的年份 ,直接顯示 「2023年2月」

* * data = [,{}]

* },,{}]

* }]

*/if(nowdata.length == 0));

}else}}

}else);

}else

}if(newdateflag)else);}}

}}

return nowdata;

}

JS格式化資料

前端經常遇到要處理後台返回的json資料,並且希望能夠按照一定格式進行展示,便於讀者檢視.此方法便可以進行操作 let txt fomatjson txt,false return try catch e console.log 資料來源語法錯誤,格式化失敗 錯誤資訊 e.description,e...

js格式化貨幣資料

function formatcurrency num if num 0 var strnum num var arr1 strnum.split var haspoint false 是否有小數部分 var piontpart 小數部分 var intpart strnum 整數部分 if arr...

js日期格式化

日期格式化 使用方法1 var now new date var nowstr util.dateformat new date yyyy mm dd hh mm ss 使用方法2 var testdate new date var teststr util.dateformat new date ...