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.
如果我遍历一个对象,我需要检查它是否不是我循环遍历的原型对象。(使用 hasOwnProperty)
如果我用 Object.keys 收集密钥,我总是会拿回“真正的密钥”。这个对吗?
是的,Object.keys()直接在对象上为您提供属性的键。所以你可以使用它。
Object.keys()
请记住,Object.keys()如果您正在进行前端开发,则可能并非所有目标浏览器都支持它。