如何将对象输出为具有格式的可读字符串(结构类似于 with <pre>
)?
没有 jQuery 可能。
我的对象看起来像这样使用console.log
.
Object
title: "Another sting"
type: "tree"
options: Object
paging: "20"
structuretype: "1"
columns: Object
...
description: "This is a string"
...
将其转换为结构化字符串的最佳方法是什么?
我的尝试:
我尝试使用stringify()
来获取 JSON 结构。然后我可以编写自己的解析器,但也许已经有任何实现了?