我一直在关注 om 教程。我使用 Light Table 设置外部浏览器连接。此外,在我的 clojurescript 代码中,我调用(enable-console-print!)
它以将我的 println 语句发送到浏览器控制台。
问题是当我打印一个 om 组件时..类似于:
(println (om/build my-component-function my-data))
我得到的输出是:
#<[object Object]>
如果我只是(om/build my-component-function my-data)
在 LightTable 中进行评估,我也会遇到同样的问题。
能够检查此对象将有助于调试。我怎样才能打印出更有意义的东西?