だから私は次のようなビューモデルを持っています:
var viewModel = function() {
var self = this;
this.chartSeries = ko.observableArray(['All Series']);
}
ko.applyBindings(new viewModel());
$(function (){
//I want to access it here
}
どうすればこれを達成できますか?
、などを試してみるとviewModel().chartSeries
、 未定義のエラーが発生します。viewModel.chartSeries
viewModel.chartSeries()