ビューモデルをjsonにシリアル化しようとしていますundefined
が、そのko.toJSON(PageViewModel)
部分しか実行できません。何か案が?
function PageViewModel() {
//Properties
this.Name = ko.observable();
this.Title = ko.observable();
this.Language = ko.observable();
//Seo
this.SEOKeywords = ko.observable();
this.SEODescription = ko.observable();
this.SEOIndexPage = ko.observable();
this.SEOGeoPositionLatitude = ko.observable();
this.SEOGeoPositionLongitude = ko.observable();
this.SEOGeoPositionPlaceName = ko.observable();
this.SEOGeoPositionRegion = ko.observable();
}
ko.applyBindings(new PageViewModel());
window.loadFirebugConsole;
console.log(ko.toJSON(PageViewModel));
ありがとうミック