0
         $.getJSON(
                    'Home/GetAllEmployees',
                    function (data) {
                        $.each(data, function (key, val) {
                            viewModel.EmployeeList.push(new EmployeeObj(val));
                        });
                    }
           );

此代码将我的 EmployeeList 加载到一个组合框中,没有任何问题。我有另一个有员工记录的表。每条记录都有一个分配给它的员工 ID。运行我的应用程序时,它会迭代员工记录表,如果它有员工 ID,它将将该员工 ID 发送到组合框,组合框将显示指定员工的姓名。
我的问题: 由于我是 Knockout.js 的新手,我对这个组合框有疑问。我不知道如何根据提供的员工 ID 显示员工姓名。

这是我将员工列表加载到 ComboBox 中的方法:

    <select data-bind="options: EmployeeList, optionsText: 'SELECTED_NAME', 
    optionsValue: 'SELECTED_ID', value: SELECTED_ID, selectedIndex: SELECTED_ID, 
    optionsCaption: 'Select Employee....' ">
    </select> 

这工作正常。我可以在组合框中看到所有员工...

4

1 回答 1

0

你可以这样做:

<select id="selectEmployee" data-bind="options: EmployeeList,
    optionsText: function (item) {
        return item.empName;
    },
    optionsValue: function (item) {
        return item.empId;
    },
    value: $root.selectedEmpId">
</select>
于 2013-06-14T21:17:05.057 回答