React应用无法在Internet Explorer 11中运行

Abd*_*had 3 internet-explorer node.js reactjs

我的react应用无法在Internet Explorer 11上运行。在边缘和Chrome上运行正常。

我已经创建了很多文件,但我不认为我可以尝试npx create-react-app。(如其他问题中所指出的那样)

我已经将其包含在两个index.js文件中,但无法正常工作。

import 'react-app-polyfill/ie11';
Run Code Online (Sandbox Code Playgroud)

这是我得到的错误:

这是我得到的错误:

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

这是我的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"
      }
    }
Run Code Online (Sandbox Code Playgroud)

Nig*_*ruz 5

这对我有用。

更新package.json中的开发数组

    "development": [
      "ie 11",
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
Run Code Online (Sandbox Code Playgroud)

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

// These must be the first lines in src/index.js
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';
Run Code Online (Sandbox Code Playgroud)

然后删除node_modules文件夹并运行

npm install
Run Code Online (Sandbox Code Playgroud)

IE默认不支持很多ES6 +功能。有关更多信息,请参考this