gpt4 book ai didi

Javascript 方法执行顺序

转载 作者:行者123 更新时间:2023-11-29 10:45:53 26 4
gpt4 key购买 nike

在阅读 yeoman 生成器文档 ( http://yeoman.io/generators.html#writing-your-first-generator ) 时,我遇到了以下行。

从顶部开始,您放置在 BlogGenerator.prototype 上的每个方法都将按照您编写它们的顺序被调用。

yeoman 如何以相同的顺序执行方法?

最佳答案

其实,这很简单……

var methods = Object.keys(Object.getPrototypeOf(this));

这是 Github link .是的,它们被调用,而不是被评估:

/*
* Runs the generator, executing top-level methods in the order they
* were defined.
*/
// ...
async.series(methods.map(resolve), runHooks);

从技术上讲,如果用数字名称定义属性,可能会遇到麻烦。例如:

var Foo = function() {};
Foo.prototype.bar = function() { console.log('I am bar'); };
Foo.prototype[123] = function() { console.log('I am 123'); };

var foo = new Foo();
var methods = Object.keys(Object.getPrototypeOf(foo)); // ['123', 'bar']
methods.map(function(fn) { foo[fn]() });
// I am 123
// I am bar

但我假设这些情况被认为是不存在的。对于所有其他人,看起来 V8 正在遵守属性的插入顺序 - 否则给定的代码显然不会按预期运行。

关于Javascript 方法执行顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19637563/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com