我正在尝试用我的reactjs应用程序运行'react-bootstrap-table-next'。我有问题
root @ ubuntu:/ home / rin / sc-deal / client#npm install @ types / react-bootstrap-table-next
root @ ubuntu:/ home / rin / sc-deal / client#npm install @ types / react-bootstrap-table-next npm ERR!代码E404 npm ERR! 404未找到-GET https://registry.npmjs.org/@types%2freact-bootstrap-table-next-未找到 npm ERR! 404 npm ERR! 404'@ types / react-bootstrap-table-next @ latest'不在npm注册表中。 npm ERR! 404您应该请作者打扰以发布它(或使用您自己的名字!) npm ERR! 404 npm ERR! 404请注意,您也可以从 npm ERR! 404 tarball,文件夹,http url或git url。
npm错误!可以在以下位置找到此运行的完整日志: npm ERR! /root/.npm/_logs/2019-06-24T12_58_36_545Z-debug.log root @ ubuntu:/ home / rin / sc-deal / client#
由于此原因我的应用程序中也出现错误:
答案 0 :(得分:0)
react-bootstrap-table-next
在@types
范围内不存在。
您应该改用react-bootstrap-table
。
npm install --save @types/react-bootstrap-table
答案 1 :(得分:0)
我在我的项目中遇到了同样的问题。 当我第一次安装这个包时,我使用了下面的命令。
$ yarn add @types/react-bootstrap-table-next
It did not work. so i removed it and re-installed it with below command.
$ yarn add react-bootstrap-table-next @types/react-bootstrap-table-next
这对我来说效果很好。在我的项目中,我使用了打字稿。
如果有用也请参考此链接:https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/989