Js: how to print object objects, js: how to print object objects

Source: Internet
Author: User
Tags print object

Js: how to print object objects, js: how to print object objects

In js debugging, when the output content is an object and cannot be printed, alert can only print the object identifier, but cannot print the content. This is inconvenient, as a result, we have summarized the following code:

function writeObj(obj){  var description = "";  for(var i in obj){   var property=obj[i];   description+=i+" = "+property+"\n";  }  alert(description); } 

In addition, when you needConvert an object to a string.

You can convert the function to the string type and print it out. The Code is as follows:

function obj2string(o){  var r=[];  if(typeof o=="string"){   return "\""+o.replace(/([\'\"\\])/g,"\\$1").replace(/(\n)/g,"\\n").replace(/(\r)/g,"\\r").replace(/(\t)/g,"\\t")+"\"";  }  if(typeof o=="object"){   if(!o.sort){    for(var i in o){     r.push(i+":"+obj2string(o[i]));    }    if(!!document.all&&!/^\n?function\s*toString\(\)\s*\{\n?\s*\[native code\]\n?\s*\}\n?\s*$/.test(o.toString)){     r.push("toString:"+o.toString.toString());    }    r="{"+r.join()+"}";   }else{    for(var i=0;i<o.length;i++){     r.push(obj2string(o[i]))    }    r="["+r.join()+"]";   }   return r;  }  return o.toString(); } 

The above two steps can be used to print the object in js, hoping to help you learn.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.