var functor=function(){
//test
}
functor.prop=1;
console.log(functor);
这只显示了仿函数的函数部分,无法在控制台中显示仿函数的属性。
使用console.dir()
输出可以单击的可浏览对象而不是.toString()
版本,如下所示:
console.dir(functor);
打印指定对象的JavaScript表示形式。如果记录的对象是HTML元素,则打印其DOM表示的属性[1]
[1] https://developers.google.com/web/tools/chrome-devtools/debug/console/console-reference#dir
如果你尝试,你可能会得到更好的结果:
console.log(JSON.stringify(functor));
如果你尝试,你可能会得到更好的结果:
console.log(JSON.stringify(obj, null, 4));
var gandalf = {
"real name": "Gandalf",
"age (est)": 11000,
"race": "Maia",
"haveRetirementPlan": true,
"aliases": [
"Greyhame",
"Stormcrow",
"Mithrandir",
"Gandalf the Grey",
"Gandalf the White"
]
};
//to console log object, we cannot use console.log("Object gandalf: " + gandalf);
console.log("Object gandalf: ");
//this will show object gandalf ONLY in Google Chrome NOT in IE
console.log(gandalf);
//this will show object gandalf IN ALL BROWSERS!
console.log(JSON.stringify(gandalf));
//this will show object gandalf IN ALL BROWSERS! with beautiful indent
console.log(JSON.stringify(gandalf, null, 4));
这对我很有用:
for(a in array)console.log(array[a])
您可以提取在控制台中创建的任何数组,以便查找/替换清除和后续使用此提取的数据
我写了一个函数来方便地将东西打印到控制台。
// function for debugging stuff
function print(...x) {
console.log(JSON.stringify(x,null,4));
}
// how to call it
let obj = { a: 1, b: [2,3] };
print('hello',123,obj);
将在控制台中输出:
[
"hello",
123,
{
"a": 1,
"b": [
2,
3
]
}
]
使用现代浏览器,console.log(functor)
工作得很好(行为与console.dir
相同)。
要输出obj:
console.log(obj, null, 4)