为了账号安全,请及时绑定邮箱和手机立即绑定

lodash里的_.delay(func, wait, [args])和setTimeout

lodash里的_.delay(func, wait, [args])和setTimeout

MM们 2018-10-09 13:22:08
效果也是在wait时间之后执行func,也能用clearTimeout来清除。_.defer(func, [args])和setTimeout(func,1)应该也是一样的吧?_.slice之类的,作用也和原生函数是一样的吧?所以我想知道为什么要提供这些API?___.slice我知道了,可以处理类数组元素。
查看完整描述

1 回答

?
猛跑小猪

TA贡献1858条经验 获得超8个赞

import toNumber from './toNumber.js'


/**

 * Invokes `func` after `wait` milliseconds. Any additional arguments are

 * provided to `func` when it's invoked.

 *

 * @since 0.1.0

 * @category Function

 * @param {Function} func The function to delay.

 * @param {number} wait The number of milliseconds to delay invocation.

 * @param {...*} [args] The arguments to invoke `func` with.

 * @returns {number} Returns the timer id.

 * @example

 *

 * delay(text => console.log(text), 1000, 'later')

 * // => Logs 'later' after one second.

 */

function delay(func, wait, ...args) {

  if (typeof func != 'function') {

    throw new TypeError('Expected a function')

  }

  return setTimeout(func, toNumber(wait) || 0, ...args)

}


export default delay

我把源码贴出来了,其实就是做了一层封装,本质上没什么区别,但是加了错误处理,并提供了一些附加解决方法,提高了容错率吧

查看完整回答
反对 回复 2018-11-17
  • 1 回答
  • 0 关注
  • 767 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信