reactjs - SCRIPT1028 : SCRIPT1028: Expected identifier, 字符串或数字

标签 reactjs internet-explorer webpack safari babel-loader

我正在开发一个 React 应用程序,但我无法在 Safari 和 IE 中打开这个应用程序。

对于IE-11: SCRIPT1028: SCRIPT1028: Expected identifier, string or number

对于 Safari(10.1.2):语法错误:意外的标记“...”。需要一个属性名称。

我的 package.json 文件是..

"dependencies": {
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
    "@storybook/addon-backgrounds": "^3.4.8",
    "@storybook/react": "^4.0.0-alpha.4",
    "@types/d3": "^5.0.0",
    "@types/debug": "^0.0.30",
    "@types/enzyme": "^3.1.9",
    "@types/jest": "^23.1.4",
    "@types/moment-timezone": "^0.5.4",
    "@types/react": "^16.9.11",
    "@types/react-dom": "^16.9.3",
    "@types/react-intl": "^2.3.16",
    "@types/react-mentions": "2.4.0",
    "@types/react-redux": "^7.1.5",
    "@types/react-router": "^5.1.2",
    "@types/react-router-dom": "^5.1.0",
    "@types/react-select": "^1.2.6",
    "@types/react-show-more": "^2.0.1",
    "@types/reactour": "^1.13.1",
    "@types/redux": "^3.6.0",
    "@types/redux-form": "^7.3.1",
    "@types/redux-logger": "^3.0.6",
    "@types/storybook__addon-backgrounds": "^3.2.0",
    "@types/storybook__react": "^3.0.8",
    "@types/styled-components": "^4.1.19",
    "awesome-typescript-loader": "^5.2.0",
    "axios": "^0.18.0",
    "babel-engine-plugin": "^0.3.0",
    "babel-loader": "^7.0.0",
    "babel-register": "^6.26.0",
    "connected-react-router": "^4.4.1",
    "cosed": "^1.1.8",
    "d3": "^5.7.0",
    "date-fns": "^1.29.0",
    "debug": "^3.1.0",
    "duplicate-package-checker-webpack-plugin": "^3.0.0",
    "emoji-mart": "^2.6.1",
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "gen-tester": "^3.1.2",
    "history": "^4.10.1",
    "html-loader": "^0.5.5",
    "html-webpack-plugin": "^3.1.0",
    "husky": "^0.14.3",
    "immer": "^1.3.1",
    "jest": "^23.3.0",
    "jest-environment-enzyme": "^6.0.2",
    "jest-enzyme": "^6.0.2",
    "jest-styled-components": "^6.0.0",
    "lint-staged": "^7.2.0",
    "moment-timezone": "^0.5.14",
    "prettier": "^1.13.7",
    "prop-types": "^15.7.2",
    "react": "^16.11.0",
    "react-cosed": "^1.0.9",
    "react-dom": "^16.11.0",
    "react-intl": "^2.8.0",
    "react-redux": "^5.1.1",
    "react-router": "^5.1.2",
    "react-router-dom": "^5.1.2",
    "react-select": "^1.2.1",
    "reactour": "^1.15.4",
    "redux": "^4.0.0",
    "redux-cosed": "^1.0.1",
    "redux-form": "^8.2.6",
    "redux-persist": "^5.10.0",
    "redux-thunk": "^2.3.0",
    "styled-components": "^4.4.1",
    "ts-jest": "^23.0.0",
    "tslint": "^5.9.1",
    "tslint-config-prettier": "^1.13.0",
    "tslint-no-circular-imports": "^0.5.0",
    "typescript": "^3.0.1",
    "uglifyjs-webpack-plugin": "^1.2.7",
    "url-loader": "^1.0.1",
    "webpack": "^4.15.1",
    "webpack-cli": "^3.0.8",
    "webpack-dev-server": "^3.1.5",
    "webpack-merge": "^4.1.3"
  },
  "devDependencies": {
    "@types/lodash.debounce": "^4.0.4",
    "firebase-tools": "^6.1.0",
    "lodash.debounce": "^4.0.8"
  }

如果需要更多详细信息,请告诉我。

请建议,我需要做什么....谢谢

我的 webpack.js 文件是....

const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const {
  CheckerPlugin,
  TsConfigPathsPlugin,
} = require('awesome-typescript-loader');
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin');

const ROOT = path.resolve(__dirname, '..');

module.exports = {
  module: {
    rules: [
      {
        test: /.tsx?$/,
        use: 'awesome-typescript-loader',
        exclude: /node_modules/,
      },
      {
        test: /.(png|jpg|gif|svg)$/,
        use: [
          {
            loader: 'url-loader',
            options: {
              limit: 25000,
            },
          },
        ],
      },
      {
        test: /.html$/,
        use: 'html-loader',
      },
    ],
  },
  resolve: {
    extensions: ['.tsx', '.ts', '.js'],
    modules: [path.resolve(ROOT, 'shared'), 'node_modules'],
    plugins: [new TsConfigPathsPlugin()],
  },
  plugins: [
    new HtmlWebPackPlugin({
      template: path.join(ROOT, 'shared', 'index.html'),
      filename: './index.html',
    }),
    new CheckerPlugin(),
    new DuplicatePackageCheckerPlugin(),
  ],
};

我认为 babel-loader 可以工作,但找不到任何使用 babel-loader 的方法。我需要此应用程序在 ie11 和 safari 上运行。

请提出一些解决方案...

最佳答案

问题是,默认情况下,应用程序是在 IE7 上呈现的,也就是说 - 而不是在支持转译构建的 IE11/Edge 上。所以我不得不提到元信息,让浏览器知道预期的浏览器是 IE11/Edge。将此添加到 index.html 的头部部分:

<meta http-equiv="X-UA-Compatible" content="IE=edge">

现在您可能会在控制台中收到一些错误,内容为 SCRIPT5009: 'Set' is undefined - 请参阅以下与 Set 集合类型的 polyfill 相关的链接:

React JavaScript Environment Requirements

有关此问题的更多信息,请参阅:

React app not rendering in IE11 and below

关于reactjs - SCRIPT1028 : SCRIPT1028: Expected identifier, 字符串或数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58801904/

相关文章:

javascript - React 无状态组件中 'const' 变量的顺序

webpack - 自定义 webpack DevServer 消息

javascript - Webback list 文件未编译为 es5

reactjs - 如何使用react-testing-library测试react-select

javascript - React Router Dom v4 处理浏览器后退按钮

css - Internet Explorer 使用图像的圆 Angular 颜色配置文件问题

javascript - step Up(1) 、step Down(1) 在 IE 中不起作用

JavaScript 性能功能

c# - 在 .net core/webpack Web 应用程序中注入(inject) css 样式的最佳实践

javascript - webpack 4 和 babel 7 出错