js
文章平均质量分 65
风流痞子狼
在代码行间寻找自我
展开
-
日期格式化
const dateFun = { /** * demo:yyyy-MM-dd hh:mm:ss.S * @param {[type]} fmt [description] * @param {[type]} date [description] * @return {[type]} [description] */ dateFormat (fmt, date) { let thisDate = date || new Date() var o = { 'M+': thisDate.getMonth() .原创 2020-05-11 16:37:57 · 201 阅读 · 0 评论 -
数据过滤
import filterMethods from './filter.js’ filters: { formatData (value, types) { if (types) { console.log(’types或者value', types, value) return filterMethods[types](value) } } } // 展示整数不保留小数,格式 XX万, XX 亿, XX 亿, 1万 --- int1 // 展示整数保留一位小数,格式 XX.0万, XX.0亿, X.原创 2020-05-11 16:34:01 · 191 阅读 · 0 评论 -
js字符串截取函数slice()、substring()、substr()
取字符串的三个函数:slice(start,[end]) 第一个参数代表开始位置,第二个参数代表结束位置的下一个位置,截取出来的字符串的长度为第二个参数与第一个参数之间的差substring(start,[end]) 第一个参数代表开始位置,第二个参数代表结束位置的下一个位置substr(start,[length]) 第一个参数代表开始位置,第二个参数代表截取的长度PS:字符串都从0开始计起...原创 2018-07-13 14:26:55 · 278 阅读 · 0 评论