Lodash - once 方法
语法
_.once(func)
创建一个函数,该函数限制只能调用一次 func。对该函数的重复调用会返回第一次调用的值。func 使用创建的函数的 this 绑定和参数来调用。
参数
func (函数) - 要限制的函数。
输出
(函数) - 返回新的受限制函数。
示例
var _ = require('lodash'); var create = function(){ console.log('Object Created.')}; var init = _.once(create); init(); init(); init(); init();
将以上程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
Object Created.
lodash_function.htm
广告