Are there any possibilities of extending the knockout mapping plugin to handle the mapping of different types when unmapping?
I have this model:
var Model = function () {
var self = this;
self.requestFrom = ko.observable(moment().subtract("days", 1));
self.requestTo = ko.observable(moment());
// additional properties.
};
And to get a plain JavaScript object out of that, I'm doing:
var model = new Model();
var obj = mapping.toJS(model, {
"ignore": ["requestFrom", "requestTo"]
});
obj.requestFrom = model().requestFrom().toISOString();
obj.requestTo = model().requestTo().toISOString();
I would like to avoid handling the translation of moment objects manually, and instead write some extension to knockout mapping that knows how to handle objects of type moment, and return them as their ISO string representation.
Any ideas?
Usually
toJSON()
is called automatically on your object when you pass it as an Ajax parameter.It may not be directly the answer that you're looking for, but adding a custom
toJSON()
on your Models works pretty good I think. You have very precise control on what part of the data is send and in what format.You can than use it directly on your Ajax requests, without converting it manually.
Note that the default toJSON() implementation of moment() is already toISOString(). See the source code of moment.js: