yesweb-libs/utils介绍


 yesweb开发框架  工具类

import { md5, cookie, dateUtils, utils, deepCopy } from 'yesweb-libs/utils'

MD5方法:

md5.hex_md5(s)   常用 | MD5计算,十六进制
md5.b64_md5 
md5.any_md5 
md5.hex_hmac_md5 
md5.b64_hmac_md5 
md5.any_hmac_md5 

cookie使用

cookie.getCookie(name)   获得指定名称的cookie值
cookie.delCookie(name) 删除cookie,根据cookie名称删除
cookie.setCookie(c_name,c_value,expiredays)   设置cookie值,参数:c_name-cookie名称 c_value-cookie值 expiredays-有效期 天

dateUtils使用

dateUtils.format(date, fmt)   格式化时间,fmt:yyyy-mm-dd
dateUtils.getCurrentMonthFirst()   获取当前月的第一天
dateUtils.getCurrentMonthLast()   获取当前月的最后一天
dateUtils.getCurrentLastHour()   获取当前时间的前一小时
dateUtils.getToday() 获得当前日期,时分秒部分为0   1.0.5024版本中添加

deepCopy使用

var newObj = deepCopy(obj) 深度复制(Copy)一个对象

utils使用

utils.isNULL(o)   判断o是否为空,null,undefined,length<1
utils.copyText(txt)   复制文本到剪切板
utils.sleep(delay)   等待delay毫秒

 

 

版权声明:本文为YES开发框架网发布内容,转载请附上原文出处连接
YES开发框架
评论列表

发表评论

评论内容
昵称:
关联文章