最佳答案 您需要使用 [] 将其装箱,使其变为 [ngClass]。此表示法用于表达式绑定(bind-6ren">
gpt4 book ai didi

angular - ngClass 如果字符串长度

转载 作者:行者123 更新时间:2023-12-02 06:49:46 26 4
gpt4 key购买 nike

如果字符串大于 10 个字符,我想在我的 div 中添加一个类,我尝试了这个但没有用

<div class="page-heading" ngClass="{'hidden-lines':post.title.length > 10}">

最佳答案

您需要使用 [] 将其装箱,使其变为 [ngClass]。此表示法用于表达式绑定(bind)。

<div class="page-heading" [ngClass]="{'hidden-lines':post.title.length > 10}">

关于angular - ngClass 如果字符串长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47802478/

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