终结/后处理链式方法

发布于 2024-11-01 17:37:38 字数 377 浏览 1 评论 0原文

假设我有一个类似数组的对象,它允许像这样链接方法:

var ds = new DataSet(items);
var subset = ds.filter(condition1).filter(condition2);

有没有办法在处理链中的最后一个方法后执行代码 - 而无需手动附加单独的 .finalize() (或 end/execute/...)方法调用?

我相信我以前在某处见过这个,但我不记得细节了。也许 futures/promises/deferreds 在这里有用 - 但我真的不知道如何使用,因为我总是最终需要“展望未来”来确定方法调用是否是链中的最后一个。

Assuming I have an Array-like object which allows for chaining methods like so:

var ds = new DataSet(items);
var subset = ds.filter(condition1).filter(condition2);

Is there a way to execute code after the last method in the chain has been processed - without resorting to manually appending a separate .finalize() (or end/execute/...) method call?

I believe I've seen this before somewhere, but I don't recall the details. Perhaps futures/promises/deferreds would be of use here - but I don't really know how, since I always end up with the need to "look into the future" to determine whether a method call is the last in the chain.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光磨忆 2024-11-08 17:37:38

如果你控制filter方法,添加一个finalize参数可能是一个想法?

.filter(condition,[some finalizer function]);

in filter:

if (finalizer){
   finalizer();
}

[edit based on comment]

另一种方法可能是允许终结器条件,因此在 .filter(condition) 中, condition 的内容定义了最终确定的需要。

比如(我不知道你的病情类型,只是编造的):

if (condition.match('f=true')) {
  finalizer();
}

If you control the filter method, it may be an idea to add a finalize parameter?

.filter(condition,[some finalizer function]);

in filter:

if (finalizer){
   finalizer();
}

[edit based on comment]

Another approach could be to allow for a finalizer condition, so in .filter(condition), the contents of condition defines the need to finalize.

Something like (I don't know the type of your condition, just making things up):

if (condition.match('f=true')) {
  finalizer();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文