所以我有一个像这样的视图模型:
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()
我得到未定义的错误。