ここで壁に頭をぶつけて、なぜこれが機能しないのかを理解しようとしています。私は多くの例に従ってみました。
したがって、私のaspxページには次のものがあります。
<input type="radio" data-bind="value: individual" />Individual
これが私のJavaScriptです:
var serviceBase = 'http://localhost:49906/PopulationSelection.aspx/';
var getSvcUrl = function (method) { return serviceBase + method; };
var ajaxGetJson = function (method, jsonIn, callback) {
$.ajax({
url: getSvcUrl(method),
type: "GET",
data: ko.toJSON(jsonIn),
dataType: "json",
contentType: "application/json",
success: function (json) {
callback(json.d);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr + ' ' + thrownError);
}
});
}
var batchesDataService = {
getSavedBatches: function (callback) {
ajaxGetJson("GetBatches", null, callback);
}
};
var Batch = function (p) {
this.individual = ko.observable(p.Individual);
this.household = ko.observable(p.Household);
this.countOnly = ko.observable(p.CountOnly);
this.femalePrimary = ko.observable(p.FemalePrimary);
this.eventManagement = ko.observable(p.EventManagement);
this.eventManagementText = ko.observable(p.EventManagementText);
this.randomSampling = ko.observable(p.RandomSampling);
this.randomSamplingText = ko.observable(p.RandomSamplingText);
this.stateHasChanged = ko.observable(false);
};
var loadBatchesCallback = function (data) {
var parsed = JSON.parse(data);
myViewModel.Batch = new Batch(parsed);
//also tried:
//myViewModel.Batch(new Batch(parsed));
};
var myViewModel;
var viewModel = function () {
this.Batch = ko.observable();
this.getBatchInfo = function () {
batchesDataService.getSavedBatches(loadBatchesCallback);
};
};
$(document).ready(function () {
myViewModel = new viewModel();
myViewModel.getBatchInfo();
ko.applyBindings(myViewModel.Batch);
});
Web メソッド (セッション アクセスに使用) からデータを取得するのに問題はありません。バッチ メンバーに警告すると、正しい情報が表示されます。
私の問題は実際のko.applyBindings()
. 何を試しても、コンソールに次のエラーが表示されます。
Uncaught Error: Unable to parse bindings.
Message: ReferenceError: individual is not defined;
Bindings value: value: individual
どんな助けでも大歓迎です!