ng-class not being applied

痞子三分冷 提交于 2019-12-21 06:48:37

问题


I have a textarea containing a message to be posted and a span with the number of characters still available.

<textarea name="" cols="" rows="" maxLength="{{maxMessageLength}}" ng-model="messageText"/>
<div id="chatmessage-buttons">              
    <a ng-click="sendMessage()"><span>Invia</span></a>
<span ng-class="{message-length-alert: (messageText.length > messageLengthAlertTreshold), message-length: true}">{{maxMessageLength - messageText.length}}</span>
</div>          

messageText, maxMessageLengthand messageLengthAlertTresholdare all defined in the $scope, and the counter inside the span is updated correctly when I insert text in the textarea, changing the value of messageText.length.

However, neither the css class message-lengthnor message-length-alertare ever applied to my span, regardless of the value contained in messageText.

I also tried removing the check for message-length-alert leaving the ng-class attribute with just {message-length: true}, but it's not applied anyway.

What am I missing?


回答1:


Try to wrap class name in quotes. Instead

ng-class="{message-length-alert: (messageText.length > messageLengthAlertTreshold), message-length: true}

Try

ng-class="{'message-length-alert': (messageText.length > messageLengthAlertTreshold), 'message-length': true}

It is because hash key must be a string or variable-like name. (Sorry for bad english)



来源:https://stackoverflow.com/questions/15680667/ng-class-not-being-applied

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!