好的,我有大量的分层数据。
我 foreach 超过 1 部分
然后我有一个有效的下拉列表
<p data-bind="visible: Id">
Race:
<select data-bind="options: $parent.data.Races, optionsText: 'Name' , optionsValue: 'Id', value: RaceId, optionsCaption: 'Choose...'"></select>
</p>
但是使用 matchId 来查找有效性别的绑定不起作用,因为上下文不会随着 with 绑定而改变。
<p data-bind="with: $parent.data.Races()[ RaceId ]">
<pre data-bind="text: ko.toJSON($data,null , 2) "></pre> //debug
Gender:
<select data-bind="options: Genders, optionsText: 'Name' , optionsValue: 'Id', value: $parent.Gender, optionsCaption: 'Choose...'"></select>
</p>
注意它的 with 不能改变上下文,一切都是可观察的。
我曾想过使用一个函数来执行此操作,但这也有点棘手,因为它需要在raceId 更改时进行更改(并且当未设置raceId 时,要么隐藏要么为空列表)
任何帮助,将不胜感激。
这是我当前的函数尝试(是的,我是 javascript 新手),尽管 with 绑定会更加优雅。
self.getGenderForRace = ko.computed( function () {
if ( this && this.data) {
return this.data.Races()[this.RaceId].Genders;
} else {
return new Array();
}
deferEvaluation: true;
}, this);
这是我的一些视图模型
l6.CreateViewModel = function (options) {
var self = this;
//this.getGenderForRace = ko.computed(function (character) {
// return this.data.Races()[character.RaceId].Genders;
//}, this);
self.getGenderForRace = ko.computed( function () {
if ( this && this.data) {
return this.data.Races()[this.RaceId].Genders;
} else {
return new Array();
}
deferEvaluation: true;
}, this);
self.setData = function (url, raceId, factionId, viewmodel) {
$.getJSON(url, { raceId: raceId, factionId: factionId }, function (data) {
viewmodel.data = ko.mapping.fromJS(data.Data);
ko.applyBindings(viewmodel); // we dont bind till we get data
// add to strcture and map!
//self.data = data.Data;
$("#tabContainer").tabs();
});