https://stackoverflow.com/questions/10305365/javascript-chrome-how-to-copy-an-object-from-the-webkit-inspector-as-code
Right-click an object in Chrome's console and select
Store as Global Variablefrom the context menu. It will return something liketemp1as the variable name.Chrome also has a
copy()method, socopy(temp1)in the console should copy that object to your clipboard.3.Note on Recursive Objects: If you're trying to copy a recursive object, you will get
[object Object]. The way out is to trycopy(JSON.stringify(temp1)), the object will be fully copied to your clipboard as a valid JSON, so you'd be able to format it as you wish, using one of many resources.If you get the
Uncaught TypeError: Converting circular structure to JSONmessage, you can useJSON.stringify's second argument (which is a filter function) to filter out the offending circular
No comments:
Post a Comment