react中把当前定位城市封装到utils工具包中

故事扮演 提交于 2020-03-05 19:55:06
import axios from 'axios'
// 创建并导出定位城市的函数
export const getCurrentCity=()=>{
    // 判断本地存储中是否有定位城市
    const localCity = JSON.parse(localStorage.getItem('hkzf_city'))
    if(!localCity){
   // 使用promise来解决异步问题
        return new Promise((resolve,reject)=>{
            // 如果没有就使用首页中获取定位城市的代码来获取,并且存储到本地存储中
        const curCity  = new window.BMap.LocalCity()
        curCity.get( async res=>{
         try {
            const result = await axios.get(`http://localhost:8080/area/info?name=${res.name}`)
            console.log(result)
          //   存储到本地存储中
              localStorage.setItem('hkzf_city',JSON.stringify(result.data.body))
              resolve(result.data.body)
         } catch (e) {
            //  获取定位城市失败
             reject(e)
         }
        })
        })
    }
    // 如果有直接返回 直接暴露一个成功的promise
    return Promise.resolve(localCity)

}
//在需要的页面引入utils
import {getCurrentCity} from '../../utils'
//直接使用获取当前定位城市
 // 获取当前定位城市 如果使用的函数没有加async 记得加上
       const curCity = await getCurrentCity()
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!