Console API

2013 年 5 月 24 日3480

From FirebugWiki

Jump to: ,

Firebug adds a global variable named "console" to all web pages loaded in Firefox. This object contains many methods that allow you to write to the Firebug console to expose information that is flowing through your scripts.

Contents

[edit] Commands

[edit] console.log(object[, object, ...])

Writes a message to the console. You may pass as many arguments as you'd like, and they will be joined together in a space-delimited line.

The first argument to log may be a string containing printf-like string substitution patterns. For example:

console.animal, count);

The example above can be re-written without string substitution to achieve the same result:

console.animalcount

These two techniques can be combined. If you use string substitution but provide more arguments than there are substitution patterns, the remaining arguments will be appended in a space-delimited line, like so:

console.myName, thing1, thing2, thing3);

If objects are logged, they will be written not as static text, but as interactive hyperlinks that can be clicked to inspect the object in Firebug's HTML, CSS, Script, or DOM tabs. You may also use the %o pattern to substitute a hyperlink in a string.

You may also use the %c pattern to use the second argument as a style formatting parameter. For example:

console.

You can even use several %c patterns within the string to use different formattings. For each %c there needs to be one argument:

console.

Here is the complete set of patterns that you may use for string substitution:

Pattern Type

%s String

%d, %i Integer (numeric formatting is not yet supported)

%f Floating point number (numeric formatting is not yet supported)

%o Object hyperlink

%c Style formatting

[edit] console.debug(object[, object, ...])

Writes a message to the console, including a hyperlink to the line where it was called.

[edit] console.info(object[, object, ...])

Writes a message to the console with the visual "info" icon and color coding and a hyperlink to the line where it was called.

[edit] console.warn(object[, object, ...])

Writes a message to the console with the visual "warning" icon and color coding and a hyperlink to the line where it was called.

[edit] console.error(object[, object, ...])

Writes a message to the console with the visual "error" icon and color coding and a hyperlink to the line where it was called.

[edit] console.assert(expression[, object, ...])

Tests that an expression is true. If not, it will write a message to the console and throw an exception.

[edit] console.clear()

Clears the console.

[edit] console.dir(object)

Prints an interactive listing of all properties of the object. This looks identical to the view that you would see in the DOM tab.

[edit] console.dirxml(node)

Prints the XML source tree of an HTML or XML element. This looks identical to the view that you would see in the HTML tab. You can click on any node to inspect it in the HTML tab.

[edit] console.trace()

Prints an interactive stack trace of JavaScript execution at the point where it is called.

The stack trace details the functions on the stack, as well as the values that were passed as arguments to each function. You can click each function to take you to its source in the Script tab, and click each argument value to inspect it in the DOM or HTML tabs.

[edit] console.group(object[, object, ...])

Writes a message to the console and opens a nested block to indent all future messages sent to the console. Call console.groupEnd() to close the block.

[edit] console.groupCollapsed(object[, object, ...])

Like console.group(), but the block is initially collapsed.

[edit] console.groupEnd()

Closes the most recently opened block created by a call to console.group() or console.groupCollapsed()

[edit] console.time(name)

Creates a new timer under the given name. Call console.timeEnd(name) with the same name to stop the timer and print the time elapsed..

[edit] console.timeEnd(name)

Stops a timer created by a call to console.time(name) and writes the time elapsed.

[edit] console.timeStamp(name)

Creates a time stamp, which can be used together with to measure when a certain piece of code was executed.

[edit] console.profile([title])

Turns on the JavaScript profiler. The optional argument title would contain the text to be printed in the header of the profile report.

[edit] console.profileEnd()

Turns off the JavaScript profiler and prints its report.

[edit] console.count([title])

Writes the number of times that the line of code where count was called was executed. The optional argument title will print a message in addition to the number of the count.

[edit] console.exception(error-object[, object, ...])

Prints an error message together with an interactive stack trace of JavaScript execution at the point where the exception occurred.

[edit] console.table(data[, columns])

Allows to log provided data using tabular layout. The method takes one required parameter that represents table-like data (array of arrays or list of objects). The optional columns parameter can be used to specify columns and/or properties to be logged (see more at softwareishard.com).

[edit] Implementation Notes

The console is an object attached to the window object in the web page.

If the page already contains a console variable, it is not overwritten by Firebug's Console API.

In Firebug for Firefox the object is attached only if the Console Panel is enabled, and it is injected just before the first JavaScript script tag is run. So the first script tag is compiled, then the console is injected, then the outer function code of the script tag is executed. As a consequence, Firebug might not always catch logs done by e.g. Greasemonkey scripts. This might be fixed in a future version.

In Firebug Lite, the console is attached as soon as Lite is installed into the page.

[edit] Note

The console API formerly implemented a console.firebug property. This property was removed from the API in Firebug 1.9.0 in order to prevent sites from detecting whether a user has Firebug installed.

[edit] See also

Console

Command Line API

Retrieved from "http://http://www.zjjv.com///wiki/index.php/Console_API"

0 0