0

谁能告诉我如何根据从 ajax 调用传回的对象从下拉列表中预先选择一个值。我一直在阅读淘汰赛教程,并自己尝试了一些事情。它永远不会根据员工的职位对象在下拉列表中选择正确的值。下面是我的代码,这里是我的小提琴的链接

http://jsfiddle.net/ricobano/HcRVH/1/

<div data-bind="foreach: employees">
    <div>
        <label>Full Name</label>
        <input data-bind="value: fullName" />
        <label>Position</label>
        <select id="slTest" data-bind="options: $root.Positions, value:position, optionsText:'name'"></select>
        <label>Salary:</label><span data-bind="text: position().salary"></span>
    </div>
</div>

function Employee(fullname, position) {
    var self = this;
    self.fullName = ko.observable(fullname);
    self.position = ko.observable(position);
}

function Position(id, name, salary) {
    var self = this;
    self.id = ko.observable(id);
    self.name = ko.observable(name);
    self.salary = ko.observable(salary);
}

function EmployeeVM() {
    var self = this;
    self.employees = ko.observableArray();

    self.Positions = [
    new Position(1, "No position", "0"),
    new Position(3, "Web Developer", "15100"),
    new Position(2, "Manager", "30000")];

    var data = {
        json: $.toJSON([{
            "fullName": "Richard Banks",
                "position": {
                    "id": 2,
                "name": "Manager",
                    "salary": "30000"
            }
        }, {
            "fullName": "Dave Grohl",
                "position": {
                    "id": 3,
                "name": "Web Developer",
                    "salary": "15100"
            }
        }, {
            "fullName": "bobby rahul",
                "position": {
                    "id": 3,
                "name": "Web Developer",
                    "salary": "15100"
            }
        }])
    };

    $.ajax({
        url: "/echo/json/",
        data: data,
        type: "POST",
        success: function (response) {
            $.each(response, function (i, item) {
                var e = new Employee(item.fullName, new Position(item.position.id, item.position.name, item.position.salary));
                self.employees.push(e);
            });

            //alert($("#slTest").html());
        }
    });
}

ko.applyBindings(new EmployeeVM());
4

1 回答 1

0

默认情况下,淘汰options绑定适用于对象,这就是您使用它的方式。问题是数组的对象与数组的对象positions不同,即使它们的值相同,因为您正在为每个员工创建一个新对象。positionemployeeposition

您将不得不选择如何存储该位置。

您可以使用optionsValue绑定来映射id员工的职位,就像这个小提琴一样

<select id="slTest" data-bind="options: $root.Positions, value:position, optionsText:'name', optionsValue: 'id'"></select>
---
$.each(response, function (i, item) {
                var e = new Employee(item.fullName, item.position.id);
                self.employees.push(e);
            });

或者,您将不得不在循环中查找positionby ,并将其传递给员工,就像这个小提琴一样ideach

$.each(response, function (i, item) {
                var position  = ko.utils.arrayFirst(self.Positions, function(p) {
                   return p.id() == item.position.id; 
                });
                var e = new Employee(item.fullName, position);
                self.employees.push(e);
            });
于 2013-07-09T16:26:00.907 回答