here`see my fiddle
http://jsfiddle.net/kirannandedkar/JUChh/2/
当我点击名称时,它不会加载选择列表并给出错误预期功能。 其实我想加载select和value应该被选中。当我在选择中更改某些内容时,它应该反映在列表中。目前ModuleId没有填入列表中,当我点击列表时,它没有填充选择列表。
视图模型:
var Person = function(id, name, country,ModuleId) {
var self = this;
self.id = ko.observable(id);
self.name = ko.observable(name);
self.country = ko.observable(country);
self.ModuleId= ko.observable(ModuleId);
return self;
};
var vm = (function() {
var people = ko.observableArray(),
selectedPerson = ko.observable();
self.editModuleId = ko.observable();
self.modules = ko.observableArray([{"Id": 1,"ModuleName": "M1"},{"Id":2,"ModuleName":"M2"}]);
getPeople = function() {
people.push(new Person(1, 'John', 'USA',1));
people.push(new Person(2, 'Mike', 'UK',1));
people.push(new Person(3, 'Dan', 'AUS',2));
},
selectPerson = function(p){
selectedPerson(p);
self.editModuleId(ko.utils.arrayFirst(self.modules(), function (data) {
console.log("item module id " + p.ModuleId());
return data.Id() === p.ModuleId();
}));
};
getPeople();
return {
people: people,
selectedPerson: selectedPerson,
selectPerson : selectPerson
};
})();
ko.applyBindings(vm);
查看:
<ul data-bind="foreach: people">
<li data-bind="text:name, click:$parent.selectPerson"></li>
<li data-bind="text:$root.editModuleId,click:$parent.selectPerson"></li>
</ul>
<div data-bind="with:selectedPerson">
<span data-bind="text:id"></span>
<input data-bind="value:name"/>
<input data-bind="value:country"/>
<select data-bind = "options:$root.modules,value:$root.editModuleId,optionsText:'ModuleName'"/>
</div>
答案 0 :(得分:1)
模块observable数组包含没有observable的简单js对象,因此在访问其属性时,您不需要放置()
。从数据中删除.Id selectPerson
函数:
selectPerson = function(p){
selectedPerson(p);
editModuleId(ko.utils.arrayFirst(modules(), function (data) {
console.log("item module id " + p.ModuleId());
return data.Id === p.ModuleId();
}));
};
这是工作小提琴:http://jsfiddle.net/JUChh/3/
我仔细查看你的代码,发现editModuleId
是多余的。您需要selectedPerson
对象 - ModuleId
中的属性,并且应该将下拉值绑定到它。
这是重构的小提琴:http://jsfiddle.net/JUChh/18/