1.安装
yarn add axios 或者 npm install axios
使用:
axios.get(`https://api.github.com/search/users?q=${value}`).then(
response => {
this.props.getLists(response.data.items)
},
error => {
alert(error.message)
}
)
2.安装fehelper 整理请求接口书
地址:https://www.baidufe.com/fehelper/index/index.html
安装方法
- 下载当前最新版
*.crx
- chrome浏览器地址栏输入:chrome://extensions/ 并打开
- 右上角开启
开发者模式
- 拖拽crx到当前页面,完成安装
3. 出现跨域怎么搞
4.兄弟间交互pubsub-js
安装 yarn add pubsub-js 或者 npm install pubsub-js
使用
1引入 import PubSub from 'pubsub-js'
2.在要接参数的x中定义并用返回值接受参数
PubSub.subscribe('通报名称',回调方法backfuc) // 创建,回调接收发布传过来的参数
PubSub.publish('MY TOPIC', 'hello world!'); // 发布
PubSub.unsubscribe(mySubscriber);// 删除
参照git 上 点击进去看看 https://github.com/mroderick/PubSubJS