如何将 bind-attr class 附加到 Ember 中的初始值?

How to append bind-attr class to initial one in Ember?

如何使用{{bind-attr}}动态CSSclass附加到初始静态

当有静态首字母 class 时,动态首字母不会添加 在页面加载时 。当我在应用程序期间更改变量时 运行 class 绑定正常工作。

Here 是一个 JSFiddle 示例。

您需要使用以下语法:

<p {{bind-attr class=':bold isRed:red'}}>

请参阅 Ember.js 文档 here,具体说明:

Bound class names and static class names cannot be combined.

工作示例here