ng-class not being applied

安稳与你 提交于 2019-12-03 22:12:11

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)

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