1. import a from './xx' 一定要有 ./
2. export default const x={} 错 改为 const x={}; export default x; 也就是要分开写
3. this.setState({}) 只有这样才会更新render 不要 this.state={}
4. axios.get().then(res=>{this.setState({}) }) 或 then(function(res){}).bind(this)