gpt4 book ai didi

javascript - 在 Angular 的 ngIf 条件中使用拆分函数

转载 作者:行者123 更新时间:2023-11-30 14:08:19 24 4
gpt4 key购买 nike

<div *ngIf="store[obj?.FundCode + obj?.PayWith].status == 'fail'">test</div>

我正在使用上述语法连接两个字符串以映射一个数组。它工作正常,但是当我尝试使用如下所示的拆分函数时,出现模板解析错误。

<div *ngIf="store[obj?.FundCode + obj?.PayWith.split(/[ ,]+/).join('-')].status == 'fail'">test</div>

当我像上面那样在 ngIf 中使用 split 函数时,应用程序抛出错误:模板解析错误。我无法找出如何转义拆分函数并正确执行它。

最佳答案

我不喜欢在 HTML 中使用复杂的语法,即使它是真正的语法;它会感到困惑。

您可以使用getter函数作为变量;就像这样:

get isFailed() : boolean {
// Check if obj is defined to avoid errors.
if(! this.obj) return false;

let key = this.obj.FundCode + obj?.PayWith.split(/[ ,]+/).join('-');
return this.store[key].status == 'fail';
}

然后在 HTML 中使用这个变量:

<div *ngIf="isFailed"> test </div>

这样会更清楚,应该可以解决您的问题。

阅读更多关于 get 的信息

关于javascript - 在 Angular 的 ngIf 条件中使用拆分函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54944382/

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