谁能告诉我如何根据从 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());