React 应用程序在 Internet Explorer 11 中不起作用

IT技术 node.js reactjs internet-explorer
2021-03-24 18:00:50

我的 React 应用程序无法在 Internet Explorer 11 上运行。它在 Edge 和 chrome 上运行良好。

我已经创建了很多文件,我认为我不能尝试 npx create-react-app。(正如在其他类似问题的答案中指出的那样)

我已经将它包含在我的 index.js 文件中,但它不起作用。

import 'react-app-polyfill/ie11';

这是我得到的错误:

这是我得到的错误:

我查看了链接,他们要求解决括号错误,但是当我看到代码时没有问题。

这是我的 package.json 文件:

{
      "name": "insurance_automation",
      "version": "0.1.0",
      "private": true,
      "dependencies": {
        "axios": "^0.18.0",
        "babel-polyfill": "^6.26.0",
        "bcryptjs": "^2.4.3",
        "body-parser": "^1.19.0",
        "config": "^3.1.0",
        "cors": "^2.8.5",
        "express": "^4.17.1",
        "jsonwebtoken": "^8.5.1",
        "multer": "^1.4.1",
        "mysql2": "^1.6.5",
        "node": "^11.15.0",
        "nodemailer": "^6.2.1",
        "react": "^16.8.6",
        "react-dom": "^16.8.6",
        "react-router-dom": "^5.0.0",
        "react-scripts": "3.0.1",
        "sequelize": "^5.8.6",
        "universal-cookie": "^4.0.0"
      },
      "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test",
        "eject": "react-scripts eject",
        "server": "nodemon server",
        "dev": "concurrently \"npm run server\" \"npm start\" "
      },
      "eslintConfig": {
        "extends": "react-app"
      },
      "browserslist": {
        "production": [
          ">0.2%",
          "not dead",
          "not op_mini all"
        ],
        "development": [
          "last 1 chrome version",
          "last 1 firefox version",
          "last 1 safari version"
        ]
      },
      "devDependencies": {
        "concurrently": "^4.1.0",
        "nodemon": "^1.19.1"
      }
    }
1个回答

这对我有用。

更新 package.json 中的 development 数组

    "development": [
      "ie 11",
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }

在 src 文件夹中的 index.js 中添加以下代码

// These must be the first lines in src/index.js
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';

然后删除 node_modules 文件夹并运行

npm install

默认情况下,IE 不支持很多 ES6+ 功能。有关更多信息,请参阅create-react-app polyfill 文档

不需要import 'react-app-polyfill/stable',其余的答案修复了它。
2021-05-28 18:00:50
我只需要添加import 'react-app-polyfill/stable'它就可以了:) 谢谢!
2021-06-10 18:00:50
我还设法使用 让它工作,import 'react-app-polyfill/stable'但我无法让它在应用程序的已发布版本上工作。有任何想法吗
2021-06-19 18:00:50