作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 React 构建我的网页。我想将我的 reducer 的存储数据下载到 xlxs 文件中。为此,我使用 exceljs
包。我已经使用 npm i exceljs
安装了 exceljs
。
但是当我尝试将 exceljs
导入我的组件时,我在屏幕上收到 TypeError: Cannot read property 'prototype' of undefined
。
我正在使用命令import Excel from "exceljs";
导入。
我的 package.json 是:
{
"name": "xxxxxxx_xxxxx",
"version": "0.1.0",
"private": true,
"dependencies": {
"exceljs": "^1.6.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-intl": "^2.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build:langs": "NODE_ENV='production' ./node_modules/.bin/babel src --out-dir lib",
"build:locale": "NODE_ENV='production' babel-node scripts/translator.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-react-intl": "^2.4.0"
}
}
最佳答案
我通过使用它来工作:
从“exceljs/dist/exceljs.min.js”导入 * 作为 Excel;
而不是
从“exceljs/dist/es5/exceljs.browser”导入 Excel;
关于reactjs - 从 "exceljs"导入 Excel 在浏览器上抛出错误 TypeError : Cannot read property 'prototype' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51836307/
我是一名优秀的程序员,十分优秀!