gpt4 book ai didi

javascript - 使用 js Promise 的复杂决策树

转载 作者:行者123 更新时间:2023-12-01 00:37:05 25 4
gpt4 key购买 nike

我正在尝试考虑在使用 javascript Promise 时格式化复杂决策树代码的最佳方法。

我已阅读以下问题,但找不到我要查找的内容:

我的愿望:

  1. 对于将来进入该项目的新开发人员来说,该流程必须非常容易理解。
  2. 每个操作/步骤都将在独立的函数/promise 中处理,并且可以轻松替换,而无需再次测试其他步骤。
  3. 输入应从每个 Promise 流向下一个 Promise。

一个简单的决策树例如: example decision tree

我想到了以下方法:

方法1

var path = "";
var input = {hhh:111};

step_1(input)
.then(step_2)
.then(change_path_to_A_or_B_according_to_input)

.then(step_a1)
.then(step_a2)
.then(change_path_to_X_or_Z_according_to_input)

.then(step_x1)
.then(step_x2)

.then(step_z1)

.then(step_b1)
.then(step_b2)
.then(step_b3);

在此方法中,每个步骤或连接点将首先检查路径变量,然后决定是否应该运行。改变路径相对困难,因为步骤的内容应该根据它们在决策树中的位置而改变(即应该调整路径变量的检查)。然而,通过查看决策树很容易理解它,尽管缩进是手动的并且实际上没有任何效果。

方法2

var input = {hhh:111};

step_1(input)
.then(step_2)
.then((input) => {
if(condition) {
return
step_a1(input)
.then(step_a2)
.then((input) => {
if(condition) {
return
step_x1(input)
.then(step_x2);
} else {
return
step_z1(input);
}
});
} else {
return
step_b1(input)
.then(step_b2)
.then(step_b3);
}
});

在这种方法中,更改路径相对容易,因为只需要调整树本身。但是,它的可读性较差。

还有更好的建议吗?

最佳答案

方法1是一个线性的promise链,它的缩进是任意的,并不一定与你的内部控制流相关。

方法 2 是正确的方法 - 这就是在 promise 链中执行条件的方法。为了获得更好的可读性,请使用不同的缩进样式和三元运算符

step_1({hhh:111})
.then(step_2)
.then(input => condition
? step_a1(input)
.then(step_a2)
.then(input => condition
? step_x1(input)
.then(step_x2)
: step_z1(input)
)
: step_b1(input)
.then(step_b2)
.then(step_b3);
);

或使用async/await语法:

var input = {hhh:111};
input = await step_1(input);
input = await step_2(input);
if (condition) {
input = await step_a1(input);
input = await step_a2(input);
if (condition) {
input = await step_x1(input);
input = await step_x2(input);
} else {
input = await step_z1(input);
}
} else {
input = await step_b1(input);
input = await step_b2(input);
input = await step_b3(input);
}

关于javascript - 使用 js Promise 的复杂决策树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58039123/

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