0
我正在嘗試使用superagent
和create-react-app
引導程序。我收到錯誤:Superagent和create-react-app錯誤,未找到模塊
錯誤./src/ToDoApp.js 模塊未找到:[CaseSensitivePathsPlugin] node_modules\superagent\lib\client.js
與磁盤上的相應路徑不匹配 - 文件不存在。
我導入模塊:
import request from 'superagent';
import noCache from 'superagent-no-cache';
我用我的request.get
在ComponentDidMount
componentDidMount(){
request.get(this.apiUrl)
.use(noCache)
.end(function _requestCallback() {
// this.setState({data:res.data});
console.log('gotit');
});
}
任何想法?
請解釋如何解決,而不是將它指向不同的問題/源 – Harwee
@Harwee問題基本細節,我很抱歉,這是我第一次回答。謝謝。 –