gpt4 book ai didi

angular - 'pipe' 号码找不到

转载 作者:行者123 更新时间:2023-12-04 17:37:20 27 4
gpt4 key购买 nike

我刚刚将我的应用程序从 Angular 4 迁移到 Angular 7,一切正常,但是当需要编译时 (ng build --prod),我收到此错误:

ERROR in : Template parse errors:
The pipe 'number' could not be found ("
</div>
<div class="col-2">
{{ listing.currency.abbreviation[ERROR ->]() }}{{ totalCreditRequest() | number : '1.0-1' }}
<span class="status-badge {{ claims[claims"): /Users/../claims/claims.component.html@50:40
The pipe 'number' could not be found ("m.itemLot.grade }}</td>
<td class="text-center">{{ listing.currency.abbreviation() }}{{ [ERROR ->]claim.outcomeValue | number : '1.0-1' }}</td>
<td class="text-center">{{ claim.issue.name"): /Users/../claims/claims.component.html@82:76

更新

我发现它因此没有编译,有人可以向我解释 ivy 是如何工作的以及为什么它没有编译吗?我将其更改为 false,现在可以使用了。

"angularCompilerOptions": {
"enableIvy": true
}

最佳答案

你必须导入 CommonModule,它覆盖了 DecimalPipe

https://angular.io/api/common/CommonModule

import { CommonModule } from '@angular/common';

@NgModule({
imports: [
CommonModule,
...
],
providers: [...],
declarations: [...]
})
export class YourModule {}

关于angular - 'pipe' 号码找不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56114313/

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