天气接口

这里用的是这个:https://www.tianqiapi.com
默认返回当前IP地区天气
在这里插入图片描述
请求接口:

  getDateWeatherAir () {
    return $http({
      url: `https://www.tianqiapi.com/参数`,
      method: 'get',
    });
  },

数据举例:
在这里插入图片描述
方法:

store.getDateWeatherAir(ip).then(res => {
        if (res) {
          this.weather.today = res.data[0];
          this.weather.tmr = res.data[1];
        }
      });

IP

获取IP地址,可以用搜狐的这个
http://pv.sohu.com/cityjson?ie=utf-8

在这里插入图片描述

1、index.html里面写script

在index.html中直接写

<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
<script type="text/javascript">
    sessionStorage.setItem('ip', returnCitySN["cip"]);
</script>

在页面中直接取
let ip = sessionStorage.getItem('ip');
这种方法不是很推荐,会导致在每个页面都访问该外部接口

2、用js间接写。。

export default function getIP () {
  let script = document.createElement('script');
  script.type = 'text/javascript';
  script.src = 'http://pv.sohu.com/cityjson?ie=utf-8';
  document.head.appendChild(script);
  let script2 = document.createElement('script');
  script2.type = 'text/javascript';
  script2.innerText = 'sessionStorage.setItem(\'ip\', returnCitySN["cip"]);';
  document.head.appendChild(script2);
}

但是容易报错returnCitySN is not defined

Logo

前往低代码交流专区

更多推荐