1

考虑:

var o = { a: 1, b: 2, toString: function() { return "foo"; } };

在 Chrome 开发工具中:

调试截图

我可以对对象做些什么,以便o在调试控制台中显示"foo"而不是完整对象?

4

1 回答 1

2

这是我的尝试:

(function() {
    var cl = console.log;
    console.log = function() {
        cl.apply(console, [].slice.call(arguments).map(function(el) {
            return {}.toString.call(el) === '[object Object]' && typeof el.toString === 'function' && el.toString !== Object.prototype.toString ? el.toString() : el;
        }));
    };
}());

^ 只需在任何console.log调用之前抛出此脚本。


测试用例:

console.log('str', 42, /rege?x/, { a: 1 }, [1, 2], {
        toString: function() { return "foo"; }
    }, new function() {
        this.toString = function() {
            return 'bar';
        };
    }
);

控制台日志输出


这只是将具有与其值toString不同的方法的普通/构造对象映射。我选择了这种方式,因为构造函数的原型中也可能有一个方法。Object.prototype.toString.toString()hasOwnPropertytoString

如您所见,所有对象甚至基元都toString从本机构造函数继承方法,因此您可能需要针对特定​​用例进行调整。例如,上面的代码片段不会使用自定义toString属性对函数对象进行字符串化。

于 2013-08-21T22:48:20.537 回答