Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用node-orm2将模型持久保存到 mysql db 列。它工作得很好,除了我想要漂亮地打印出书面的 json,所以当我查看数据库时我可以很容易地阅读它。 这可能吗?
您可以使用带参数的 JSON 字符串化:
var obj = {manu: true, gili: "abc"} var str = JSON.stringify(obj, null, 4); // spacing = 4