YUI 如何告诉 Web 检查器/开发工具对象的类型?

发布于 2024-11-30 06:47:43 字数 212 浏览 0 评论 0原文

所以我最近注意到,当我 console.log 一个 YUI 节点并检查它的 _node 属性时,该对象具有类似“childNodes: NodeList”的字段,其中 NodeList 只是一个 JS 对象。 YUI 如何提供元信息以便 Web Inspector 知道这个对象实际上是一个 NodeList?

能够为对象 blob 提供元类型信息对于调试可能非常有用。

谢谢

So I recently noticed that when I console.log a YUI node and inspect its _node attribute, that object has fields like "childNodes: NodeList" where NodeList is just a JS object. How does YUI provide meta-information so that web inspector knows that this object is actually a NodeList?

It may be extremely useful for debugging to be able to provide meta type information for object blobs.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此生挚爱伱 2024-12-07 06:47:43

没有元数据。 NodeList 是类的名称,调试器可以看到每个对象属于哪个类。在您的示例中,某处通过调用创建了 NodeList,

new NodeList();

并且引擎会记住该类型信息。

There is no meta-data. NodeList is the name of the class, and debuggers can see what class every object belongs to. In your example, somewhere a NodeList was created by calling

new NodeList();

and the engine remembers that type information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文