在角度材料中是否有类似angular.js ng-class的东西?
我希望能够根据控制器中的值更改元素类,但我找不到任何方法。
在samples中,我看到了一种更改样式属性的方法,但是当有许多样式需要更改时,这看起来很难看。
答案 0 :(得分:2)
由于角度素材应用程序仍然是角度应用程序,因此ng-class正常工作。
from django.core import mail
def test_send(self):
mail.send_mail('subject', 'body.', 'from@example.com', ['to@example.com'])
assert len(mail.outbox) == 1
def test_send_again(self):
mail.send_mail('subject', 'body.', 'from@example.com', ['to@example.com'])
assert len(mail.outbox) == 1
其中<div ng-class="{'my-bacground': isClass}">
是类的名称,'my-bacground'
是附加到isClass
的变量的名称。
请参阅plunk了解工作示例。