[javascript] Chrome 콘솔에서 전체 개체를 표시하는 방법은 무엇입니까?

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])

추출 된이 데이터의 정리 및 사후 사용을 찾기 / 바꾸기 위해 콘솔에서 생성 된 배열을 추출 할 수 있습니다.


답변

Trident D’ Gao 답변의 기능을 만들었습니다.

function print(obj) {
  console.log(JSON.stringify(obj, null, 4));
}

이것을 어떻게 사용 하는가

print(obj);


답변

콘솔에 편리하게 출력하는 함수를 작성했습니다.

// 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
        ]
    }
]