Caldera 表格高级文件上传 2 无法在 Internet Explorer 中呈现

Caldera Form Advanced File Upload 2 not render in Internet Explorer

Caldera Forms 中的高级文件上传 2 字段在 Internet Explorer 11 中不show/render。

它是用 React 渲染的,我只有构建文件。 控制台没有错误,所以我不知道要开始。

我尝试插入以下 polyfill,但没有任何改变。

 <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>

在 Edge 上也是如此。

使用以下小 Polyfill 一切正常:

 <script>
    (function () {
        if ( typeof NodeList.prototype.forEach === "function" ) return false;
        NodeList.prototype.forEach = Array.prototype.forEach;
    })();
</script>

在此处找到:https://tips.tutorialhorizon.com/2017/01/06/object-doesnt-support-property-or-method-foreach/