在Ember 2.0中替换属性绑定语法

时间:2015-07-23 08:33:27

标签: ember.js

以前我可以做这样的事情来获得对动态密钥的双向绑定:

{{my-component idBinding='content.dynamicKey'}}

在Ember 2.0中,这会产生一个排泄警告:

DEPRECATION: You're using legacy binding syntax: idBinding=content.dynamicKey 
Please replace with id=content.dynamicKey

不幸的是我无法绑定到content.dynamicKey,因为这只会绑定到字符串值,而不是映射到值的实际路径。

如何在Ember 2.0中实现上述行为?

1 个答案:

答案 0 :(得分:0)

我认为这只是{{my-component id=content.dynamicKey}}

Input helper valueBinding is deprecated - what's the alternative?

可能重复