admin管理员组文章数量:1350801
Is there a way to get my replacer called before an object's own toJSON
transforms it, so that I can work with the original object rather than its JSON-friendly form, without overriding the toJSON
on the object or its prototype, pre-processing the object, or writing my own version of JSON.stringify
?
For example: Suppose I want to serialize Date
instances differently than their normal serialization (which is toISOString
). (This question is not specific to Date
, this is just an example.) The problem is, my replacer doesn't see the Date
object, it sees a string (see snippet below) because Date.prototype.toJSON
is called before my replacer.
var obj = {
d: new Date()
};
snippet.log(getType(obj.d)); // "[object Date]"
var json = JSON.stringify(obj, function(key, value) {
if (key === "d") {
snippet.log(getType(value)); // "string" <== Want to see a Date here
}
return value;
});
function getType(value) {
var to = typeof value;
if (to === "object") {
to = Object.prototype.toString.call(value);
}
return to;
}
<!-- Script provides the `snippet` object, see -->
<script src=".js"></script>
Is there a way to get my replacer called before an object's own toJSON
transforms it, so that I can work with the original object rather than its JSON-friendly form, without overriding the toJSON
on the object or its prototype, pre-processing the object, or writing my own version of JSON.stringify
?
For example: Suppose I want to serialize Date
instances differently than their normal serialization (which is toISOString
). (This question is not specific to Date
, this is just an example.) The problem is, my replacer doesn't see the Date
object, it sees a string (see snippet below) because Date.prototype.toJSON
is called before my replacer.
var obj = {
d: new Date()
};
snippet.log(getType(obj.d)); // "[object Date]"
var json = JSON.stringify(obj, function(key, value) {
if (key === "d") {
snippet.log(getType(value)); // "string" <== Want to see a Date here
}
return value;
});
function getType(value) {
var to = typeof value;
if (to === "object") {
to = Object.prototype.toString.call(value);
}
return to;
}
<!-- Script provides the `snippet` object, see http://meta.stackexchange./a/242144/134069 -->
<script src="http://tjcrowder.github.io/simple-snippets-console/snippet.js"></script>
Is there a way to get the replacer called first? I don't want to override Date.prototype.toJSON
, pre-process the object, or write my own JSON.stringify
, but I'm not seeing another way.
2 Answers
Reset to default 13If I understand you correct this should do the trick, I'm pretty sure this
is always the object JSON.stringify
is currently iterating over:
var json = JSON.stringify(obj, function(key, value) {
if (key === "d") {
snippet.log(getType(this[key]));
}
return value;
});
From MDN:
The object in which the key was found is provided as the replacer's
this
parameter.
So you can do this:
var obj = {
d: new Date()
};
console.log(getType(obj.d)); // "[object Date]"
var json = JSON.stringify(obj, function(key, value) {
if (key === "d") {
console.log(getType(this[key]));
}
return value;
});
function getType(value) {
var to = typeof value;
if (to === "object") {
to = Object.prototype.toString.call(value);
}
return to;
}
本文标签: javascriptCall the replacer *before* the object39s toJSONStack Overflow
版权声明:本文标题:javascript - Call the replacer *before* the object's toJSON? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683154a2521458.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论