gpt4 book ai didi

angular - detectChanges 重置 react 形式。在测试中管理表单值的正确方法是什么?

转载 作者:行者123 更新时间:2023-11-28 20:48:30 24 4
gpt4 key购买 nike

我正在为响应式表单编写测试。

app.form.get('name').setValue('new value');
expect(app.form.get('name').value).toEqual('new value');
fixture.detectChanges();
expect(app.form.get('name').value).toEqual('new value'); // <-- Fails.

我调试过了。我看到控件值在 detectChanges

之后重置为默认值

There is the case

在测试中管理表单值的正确方法是什么?

最佳答案

您编写的测试可能会因以下原因而失败:

fixture.detectChanges();将执行 ngOnInit方法,如果您正在实例化 app.form该生命周期钩子(Hook)中的值,

然后所有字段将再次获得默认值和您之前设置的值:

app.form.get('name').setValue('new value');

将被覆盖,您的测试将在 expect(app.form.get('name').value).toEqual('new value'); // <-- Fails. 中进行然后会失败。

关于angular - detectChanges 重置 react 形式。在测试中管理表单值的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56284765/

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