淘宝镜像

npm --registry https://registry.npm.taobao.org install

 

封装axios

import axios from 'axios'

export const get = url => (
  params => (
    axios.get(url, {
      params
    }).then(res => {
      let {status, data} = res
      return status === 200 ? data : ''
    }).catch(e => {})
  )
)

 

搜索框,点击跳转可以使用setTimeout解决点击无效

 

react中iconfont不显示问题,原因是字体编码后四位是Unicode编码,可以将 "" 改为 “\ue655” 即可

posted on 2018-12-08 08:55  苏荷酒吧  阅读(205)  评论(0编辑  收藏  举报