vuejs小例子之天气查询

前端开发 作者: 2024-08-26 09:50:01
看一个例子: <html> <head> <script src="https://unpkg.com/axios/dist/axios.min.js"
<html>

head>
  script src="https://unpkg.com/axios/dist/axios.min.js"></script="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">
</bodydiv id="app">
    input type="text" v-model="city" @keyup.enter="getWeathers"button @click>查询buttonbra href="#" @click="changeCity('北京')">北京a="changeCity('武汉')">武汉="changeCity('上海')">上海="changeCity('深圳')">深圳ul>
      li v-for="(item,index) in weathers">
        {{item.type}} {{item.low}} {{item.high}} {{item.date}}
      lidiv
    var vue = new Vue({
      el: "#app",data: {
        city: '',weathers: [],},methods: {
        getWeathers: function () {
          var that = this
          axios.get('http://wthrcdn.etouch.cn/weather_mini?city=' + this.city)
            .then(function (response) {
              that.weathers = response.data.data.forecast;
            },function (err) {

            })
        },changeCity: function (city) {
          this.city = city;
          this.getWeathers();
        },})
  >
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_68906.html