Vue搭配axious简单项目 天气预报

Posted 一个经常掉线的人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue搭配axious简单项目 天气预报相关的知识,希望对你有一定的参考价值。

main.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documen</title>
</head>

<body>
    <div id="app">
        <input type="text" placeholder="请输入查询" @keyup.enter="searchWeather" v-model="city">
        <button @click="searchWeather">搜索</button>
        <ul>
            <li v-for="item in weatherList">
                <span>{{item.type}}</span>
                <div>
                    <b>{{item.low}}</b>
                    ~
                    <b>{{item.high}}</b>
                </div>
                <div><span>{{item.date}}</span></div>
            </li>
        </ul>
    </div>
    <!-- 开发环境版本,包含了有帮助的命令行警告 -->
    <script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
    <!-- 导入axios -->
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
    <!-- 导入自己的js  -->
    <script src="./js/main.js"></script>
</body>

</html>

main.js

var app = new Vue({
    el: \'#app\',
    data: {
        city:"",
        weatherList:[],
    },
    methods:{
        searchWeather:function(){
            var that=this;
            axios.get(\'http://wthrcdn.etouch.cn/weather_mini?city=\'+this.city)
            .then(function(response){
                    that.weatherList=response.data.data.forecast;
                    console.log(response.data.data.forecast);
                }
            )
            .catch(function(err){
                    console.log("未知城市")
                }
            )
        }
    }
})

以上是关于Vue搭配axious简单项目 天气预报的主要内容,如果未能解决你的问题,请参考以下文章

Vue快速入门(附实战小项目:记事本天气预报音乐播放器)

laravel5.4+vue+vux+element的环境搭配

Github Actions简单部署一个vue/react项目

回归 | js实用代码片段的封装与总结(持续更新中...)

最细致的Spring Boot结合Vue前后端分离项目打包部署步骤(搭配Nginx)

最细致的Spring Boot结合Vue前后端分离项目打包部署步骤(搭配Nginx)