次のオブジェクトを定義しています
function BusinessUnit(id, name, code) {
this.id = ko.observable(id);
this.name = ko.observable(name);
this.code = ko.observable(code);
}
私のビューモデルでは、次のように定義します
this.selectedEntry = new BusinessUnit("", "", "");
そしてそれはを使用してバインドされます
$('#readID').attr('data-bind', 'text : selectedEntry.id');
これは私が得るエラーです
バインディングを解析できません。メッセージ:ReferenceError:selectedEntryが定義されていません。バインディング値:テキスト:selectedEntry.id
私も試し$('#readID').attr('data-bind', 'text : $root.selectedEntry.id');
ましたが、同じエラーが発生します。どんなアイデアも役に立ちます