Why can't you stringify a function expression?

2020-02-26 06:26发布

Why doesn't this produce anything?

console.log(JSON.stringify(function(){console.log('foobar');}));

5条回答
做自己的国王
2楼-- · 2020-02-26 06:59

yourFunctionName.toString(); will also stringify a function

查看更多
萌系小妹纸
3楼-- · 2020-02-26 07:08

You cannot do that, but there are some third party libraries can help you do that, like: https://www.npmjs.com/package/json-fn

查看更多
孤傲高冷的网名
4楼-- · 2020-02-26 07:09

If you want to use JSON.stringify to also convert functions and native objects you can pass a converter function as the second argument:

const data = {
  fn: function(){}
}

function converter(key, val) {
  if (val && typeof val === 'function' || val.constructor === RegExp) {
    return String(val)
  }
  return val
}

console.log(JSON.stringify(data, converter, 2))

Return undefined from the converter function if you want to omit the result.

The third parameter is how many spaces you want the output to indent (optional).

查看更多
Rolldiameter
5楼-- · 2020-02-26 07:13

JSON can't stringify functions at all, it handles them just like undefined or null values. You can check the exact algorithm at EcmaScript 5.1 §15.12.3, see also the description at MDN.

However you of course can stringify function expression by casting them to a string, try

console.log("" + function(){console.log('foobar');})
查看更多
叛逆
6楼-- · 2020-02-26 07:18

JSON has no means to represent a function. It is a data format designed for simplicity and compatibility across languages (and a function is the last thing that will be cross-language compatible).

From the docs for JSON.stringify:

If undefined, a function, or an XML value is encountered during conversion it is either omitted (when it is found in an object) or censored to null (when it is found in an array).

查看更多
登录 后发表回答