1

我有一堆行,每一行都有一个具有相同值的下拉列表。当用户从特定行的下拉列表中选择一个项目时,我想向我的 REST API 发出请求,以使用所选值更新该记录。

这是带有本地数据的工作示例的 jsbin http://jsbin.com/OcAyoYo/84/edit

我正在建立这样的观点:

{{view Ember.Select
   contentBinding="App.names.content"   
}} 

如何添加一个observe这样的,它在 API 上执行查询以保存该 ID 的记录

4

1 回答 1

0

只需将 selectionBinding 添加到您的选择中:

{{view Ember.Select
   contentBinding="App.names.content"
   selectionBinding="propertyWhereYouWantTheValueToBoPlaced"
}}
于 2013-08-23T23:21:01.340 回答