JSON.stringify 未序列化扩展类道具

发布于 2025-01-11 07:25:02 字数 600 浏览 0 评论 0原文

我在字符串化 JavaScript 扩展类时遇到问题。首先,我创建 MyError 类作为 Error 的扩展,然后在 MyError 的新实例上尝试 JSON.stringify。

我希望看到继承的 (Error) 类的 .message 属性,但 stringify 仅序列化 MyError 类的直接属性。请参阅下面的代码和输出。

有没有办法告诉 stringify 包含 Error.message?或者有一个简单的解决方法来实现这一目标?

class MyError extends Error {
  constructor(message, hint = "") {
    super(message);
    this.message = message; // attempt to trick .stringify
    this.hint = hint;
  }
}

console.log(JSON.stringify(new MyError("hello world");));

实际输出:{"hint":""}

期望输出:{"message":"hello world","hint":""}

I have an issue stringifying JavaScript extended class. First, I create MyError class as extension of Error and then try JSON.stringify on a new instance of MyError.

I expect to see .message property of the inherited (Error) class, but stringify only serializes direct attributes of MyError class. See code and output below.

Is there a way to tell stringify to include Error.message? Or an easy workaround to achieve this?

class MyError extends Error {
  constructor(message, hint = "") {
    super(message);
    this.message = message; // attempt to trick .stringify
    this.hint = hint;
  }
}

console.log(JSON.stringify(new MyError("hello world");));

Actual output: {"hint":""}

Desired output: {"message":"hello world","hint":""}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文