Answers:
如果用“将不执行”来表示“多次调用将不执行任何操作”,则可以创建一个闭包:
var something = (function() {
var executed = false;
return function() {
if (!executed) {
executed = true;
// do something
}
};
})();
something(); // "do something" happens
something(); // nothing happens
回答@Vladloffe(现在已删除)的评论:使用全局变量,其他代码可以重置“已执行”标志的值(无论您为它选择什么名称)。使用闭包时,其他代码都无法意外或故意这样做。
正如这里的其他答案所指出的那样,几个库(例如Underscore和Ramda)都有一个小的实用程序函数(通常命名为once()
[*]),该函数接受一个函数作为参数,并返回另一个函数,该函数恰好一次调用提供的函数,无论如何多次调用返回的函数。返回的函数还会缓存所提供的函数首先返回的值,并在后续调用中返回该值。
但是,如果您不使用这样的第三方库,但仍然想要这样的实用程序功能(而不是我上面提供的现成的解决方案),则很容易实现。我见过的最好的版本是David Walsh发布的这个版本:
function once(fn, context) {
var result;
return function() {
if (fn) {
result = fn.apply(context || this, arguments);
fn = null;
}
return result;
};
}
我倾向于更改fn = null;
为fn = context = null;
。有没有理由,关闭,保持一个参考context
一旦fn
被调用。
[*] 但是,请注意,其他库(例如jQuery的Drupal扩展)可能具有名为的函数once()
,该函数的功能完全不同。
将其替换为可重用的NOOP (无操作)功能。
// this function does nothing
function noop() {};
function foo() {
foo = noop; // swap the functions
// do your thing
}
function bar() {
bar = noop; // swap the functions
// do your thing
}
setInterval(foo, 1000)
-并且已经不起作用了。您只是覆盖当前范围中的引用。
function myFunc(){
myFunc = function(){}; // kill it as soon as it was called
console.log('call once and never again!'); // your stuff here
};
<button onClick=myFunc()>Call myFunc()</button>
var myFunc = function func(){
if( myFunc.fired ) return;
myFunc.fired = true;
console.log('called once and never again!'); // your stuff here
};
// even if referenced & "renamed"
((refToMyfunc)=>{
setInterval(refToMyfunc, 1000);
})(myFunc)
setInterval()
),则该引用将在被调用时重复原始功能。
UnderscoreJs具有执行此功能的功能,underscorejs.org /#once
// Returns a function that will be executed at most one time, no matter how
// often you call it. Useful for lazy initialization.
_.once = function(func) {
var ran = false, memo;
return function() {
if (ran) return memo;
ran = true;
memo = func.apply(this, arguments);
func = null;
return memo;
};
};
once
接受论点对我来说似乎很可笑。您可以同时拨打squareo = _.once(square); console.log(squareo(1)); console.log(squareo(2));
并1
致电squareo
。我了解这个权利吗?
_.once
方法。参见jsfiddle.net/631tgc5f/1
_
,则非常方便;我不建议依赖整个库来提供这么少的代码。
var quit = false;
function something() {
if(quit) {
return;
}
quit = true;
... other code....
}
您可以简单地使用“删除自身”功能
function Once(){
console.log("run");
Once = undefined;
}
Once(); // run
Once(); // Uncaught TypeError: undefined is not a function
但是,如果您不希望吞下错误,那么这可能不是最佳答案。
您也可以这样做:
function Once(){
console.log("run");
Once = function(){};
}
Once(); // run
Once(); // nothing happens
我需要它像智能指针一样工作,如果没有来自类型A的元素,则可以执行,如果有一个或多个A元素,则该函数无法执行。
function Conditional(){
if (!<no elements from type A>) return;
// do stuff
}
Once
作为回调传递(例如),则此方法无效setInterval(Once, 100)
。原始函数将继续被调用。
可重复使用的invalidate
功能,适用于setInterval
:
var myFunc = function (){
if (invalidate(arguments)) return;
console.log('called once and never again!'); // your stuff here
};
const invalidate = function(a) {
var fired = a.callee.fired;
a.callee.fired = true;
return fired;
}
setInterval(myFunc, 1000);
这是一个JSFiddle示例-http: //jsfiddle.net/6yL6t/
和代码:
function hashCode(str) {
var hash = 0, i, chr, len;
if (str.length == 0) return hash;
for (i = 0, len = str.length; i < len; i++) {
chr = str.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
}
var onceHashes = {};
function once(func) {
var unique = hashCode(func.toString().match(/function[^{]+\{([\s\S]*)\}$/)[1]);
if (!onceHashes[unique]) {
onceHashes[unique] = true;
func();
}
}
您可以这样做:
for (var i=0; i<10; i++) {
once(function() {
alert(i);
});
}
它只会运行一次:)
最初设定:
var once = function( once_fn ) {
var ret, is_called;
// return new function which is our control function
// to make sure once_fn is only called once:
return function(arg1, arg2, arg3) {
if ( is_called ) return ret;
is_called = true;
// return the result from once_fn and store to so we can return it multiply times:
// you might wanna look at Function.prototype.apply:
ret = once_fn(arg1, arg2, arg3);
return ret;
};
}
如果您使用Node.js或通过browserify编写JavaScript,请考虑使用“一次” npm模块:
var once = require('once')
function load (file, cb) {
cb = once(cb)
loader.load('file')
loader.once('load', cb)
loader.once('error', cb)
}
如果您希望将来能够重用该功能,则根据上面的ed Hopp的代码,它可以很好地工作(我意识到原来的问题并不需要此额外功能!):
var something = (function() {
var executed = false;
return function(value) {
// if an argument is not present then
if(arguments.length == 0) {
if (!executed) {
executed = true;
//Do stuff here only once unless reset
console.log("Hello World!");
}
else return;
} else {
// otherwise allow the function to fire again
executed = value;
return;
}
}
})();
something();//Hello World!
something();
something();
console.log("Reset"); //Reset
something(false);
something();//Hello World!
something();
something();
输出如下:
Hello World!
Reset
Hello World!
尝试使用下划线“一次”功能:
var initialize = _.once(createApplication);
initialize();
initialize();
// Application is only created once.
保持尽可能简单
function sree(){
console.log('hey');
window.sree = _=>{};
}
你可以看到结果
this
代替window
jQuery使用方法one()只能调用一次函数:
let func = function() {
console.log('Calling just once!');
}
let elem = $('#example');
elem.one('click', func);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>
<p>Function that can be called only once</p>
<button id="example" >JQuery one()</button>
</div>
使用JQuery方法on()实现:
let func = function(e) {
console.log('Calling just once!');
$(e.target).off(e.type, func)
}
let elem = $('#example');
elem.on('click', func);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>
<p>Function that can be called only once</p>
<button id="example" >JQuery on()</button>
</div>
使用本机JS的实现:
let func = function(e) {
console.log('Calling just once!');
e.target.removeEventListener(e.type, func);
}
let elem = document.getElementById('example');
elem.addEventListener('click', func);
<div>
<p>Functions that can be called only once</p>
<button id="example" >ECMAScript addEventListener</button>
</div>
这对于防止无限循环(使用jQuery)很有用:
<script>
var doIt = true;
if(doIt){
// do stuff
$('body').html(String($('body').html()).replace("var doIt = true;",
"var doIt = false;"));
}
</script>
如果您担心名称空间污染,请为“ doIt”替换一个随机的长字符串。
它有助于防止执行粘滞
var done = false;
function doItOnce(func){
if(!done){
done = true;
func()
}
setTimeout(function(){
done = false;
},1000)
}