项目开发技巧

淘宝镜像

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” 即可

原文地址:https://www.cnblogs.com/sonwrain/p/other.html