Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 an 上添加一些样式Ember.Textfield,即:style="max-width: 100%;". 我试图做到这一点,attributeBinding但没有太大的成功。有人有可行的解决方案吗?
Ember.Textfield
style="max-width: 100%;"
attributeBinding
尽管您应该更好地使用 CSS 类名,但您可以扩展 Ember.TextField 并将“样式”添加到属性绑定
App.StyledTextField : Ember.TextField.extend({ attributeBindings: ['style', 'type', 'value', 'size'] })
现在你可以做这样的事情:
{{view App.StyledTextField style="max-width: 100%"}}