在 CLJS 集合或序列上使用 console.log
会返回类似 `
Object { meta: null, cnt: 3, shift: 5, root: {…}, tail: (3) [...], __hash: null, "cljs$lang$protocol_mask$partition0$": 167666463, "cljs$lang$protocol_mask$partition1$": 139268 }`
的内部表示。这对于初学者来说可能是一个容易陷入的陷阱,因为 console.log
是 JS 开发者的一种标准调试工具。建议用户使用类似 binaryage/devtools
或其他任何转换 CLJS 类型到 JS 类型的内置函数。