当我尝试使用react时,它在下面显示了这个错误.
在尝试以下命令之前,我已经安装了以下命令:
npm install --save react-toastify
在Google控制台中显示错误:
ERROR in ./src/Pages/Login/Login/Login.js 12:0-55 Module not found: Error: Can't resolve 'react-toastify' in 'C:\projects\toffpark-footwear-inventory-client\src\Pages\Login\Login'我和React, bootstrap, javascript一起工作
发布于 2022-08-05 08:04:16
请使用以下命令:
首先使用这个安装并导入它。
npm i react-toastify
import {ToastContainer,toast} from 'react-toastify'在返回的同时,添加以下内容
<ToastContainer />像这样使用它
<div>
<button className="btn btn-primary" onClick={notify}>
Show live alert
</button>
<ToastContainer />
</div>https://stackoverflow.com/questions/72160148
复制相似问题