gpt4 book ai didi

javascript - TypeError : Object. 条目不是函数

转载 作者:IT老高 更新时间:2023-10-28 23:02:42 25 4
gpt4 key购买 nike

为什么我在尝试运行 Node.js/Express 服务器时不断收到此错误消息?

这是新版 ES7 的一部分吗?我需要什么才能使用这些新功能运行应用程序?

最佳答案

在 mdn 文档上,Object.entries 上有一个清晰的教程。 ,并且描述了如果在 PolyFill 部分上不支持 Object.entries 该怎么办在同一页面中。

To add compatible Object.entries support in older environments that do not natively support it, you can find a demonstrational implementation of Object.entries in the tc39/proposal-object-values-entries (if you don't need any support for IE), a polyfill in the es-shims/Object.entries repositories, or you can use the simple, ready to deploy polyfill listed below.

if (!Object.entries)
Object.entries = function( obj ){
var ownProps = Object.keys( obj ),
i = ownProps.length,
resArray = new Array(i); // preallocate the Array

while (i--)
resArray[i] = [ownProps[i], obj[ownProps[i]]];
return resArray;
};

关于javascript - TypeError : Object. 条目不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43858714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com