gpt4 book ai didi

javascript - 未能将 IF/Else 条件转换为 Ramda Cond

转载 作者:行者123 更新时间:2023-12-03 00:45:39 26 4
gpt4 key购买 nike

使用 Ramda 进行 E2E 工作。我不知道如何使用 Ramda Cond 转换简单的 IF 条件。

使用 If 的代码:

if (constraint == 'required') {
// then only do something
await waitForElementToBeClickable(constraintElement);
await constraint.click();
}

我不想要 else,因为我希望仅在存在约束时才发生操作。

到目前为止,我已经使用约束完成了此操作,但它不起作用:

await waitForElementToBeClickable(cond([
[equals('required'), always(constraintElement)],
])(constraint), this.browser);

const constraintCheck = cond([
[equals('required'), () => constraintElement.click()],
]);
await constraintCheck(constraint);

在某些情况下,我不想通过约束。那么条件根本不应该执行。但它总是被执行并抛出错误:无法读取未定义的属性“isPresent”。

最佳答案

我认为这里可能存在一些困惑(超出了 customcommander 正确指出的关于约束类型的范围。)

Ramda 试图提供的功能之一是允许我们使用表达式而不是语句进行编程。尤其值得关注的是控制流语句。但声明看起来像这样:

let foo
if (condition) {
foo = 'bar'
} else {
foo = 'baz'
}

已经有了标准的表达形式:

const foo = condition ? 'bar' : 'baz'

Ramda 并没有真正尝试提供替代方案。但我们还有另一种方法可以尝试使用 if:

let foo
if (test(val)) {
foo = bar(val)
} else {
foo = baz(val)
}

在这里,当使用函数时,Ramda 提供了一种方便的简写方式:

const getFoo = ifElse(test, bar, baz)
// ... later
const foo = getFoo(val)

(And if you just want to return val in the case the test fails, you can use the shorthand:

   const foo = when(test, bar)

Or if you want val when the test succeeds, you can do

   const foo = unless(test, baz)

)

虽然将代码变成

可能会更具表现力
const foo = ifElse(test, bar, baz)(val)

这不是重点。 ifElse 的基本原理是使用它来创建可重用函数 ifElse(test, bar, baz)。 (cond 是一样的,只是提供一系列条件结果对,而不是一个 if 和一个 else。)

请注意这一点的一个重要特征:测试函数、如果为 true 则运行的函数以及如果为 false 则运行的函数都具有相同的签名。如果其中之一接受三个参数,那么它们都应该接受三个参数。虽然测试应返回 bool 值,但其他两个可以具有任何返回类型,但每个测试都应具有与另一个相同的返回类型。

因此,当您尝试使用 () =>constraintElement.click() 时,可以使用 thunk,这主要是对 Ramda 功能的误用。它可能不会给你的代码带来任何好处。

<小时/>

目前还不清楚您要尝试将 if 语句转换为 ifElsecond 执行什么操作。请随意添加更新到您的问题,更全面地解释您想要做什么,以及您试图通过此转换解决什么问题,有人可能会提供一些帮助。但请务必弄清楚 constraintconstraintElement 是什么以及 waitForElementToBeClickable 解析为什么。现在情况相当困惑。

关于javascript - 未能将 IF/Else 条件转换为 Ramda Cond,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53260416/

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