如果字符串大于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/