我有一个简单的结构,其中包含Ember.Select
一些预定义的字符串,并Ember.TextField
在它旁边:
{{view Ember.Select
prompt="Choose..."
contentBinding="predefinedLabels"
optionValuePath="content.value"
optionLabelPath="content.label"
}}
{{view Ember.TextField valueBinding='view.newLabel' action='saveNewLabel'}}
我需要在选择更改时获取它的当前值(如果没有提示)并将其设置为TextField
然后将选择重置为提示状态 - 听起来微不足道,但我不知道该怎么做:(我尝试使用selectionBinding
但问题是这些集合 Select+ TextField 是动态创建的。使用通用 jQuery,我会通过将通用change
侦听器添加到select
具有某些指定类的所有标签来做到这一点,Ember 中的类似行为等效于什么?(或者什么是正确的方法来做什么?我需要?