• Web前端-Vue2+Vue3基础入门到实战项目-Day3(生命周期, 案例-小黑记账清单, 工程化开发入门)


    生命周期

    生命周期 & 生命周期四个阶段

    • Vue生命周期: 一个Vue实例从创建到销毁的整个过程
    • 生命周期四个阶段:
      1. 创建(new Vue()): 响应式数据
      2. 挂载: 渲染模板
      3. 更新: 数据修改, 更新视图
      4. 销毁: 销毁实例
    • 什么时候可以发送初始化渲染请求
      • 越早越好, 创建阶段
    • 什么时候可以开始操作dom
      • 至少dom得渲染出来, 挂载阶段

    生命周期钩子

    • Vue生命周期函数(钩子函数): Vue生命周期过程中, 会自动运行一些函数, 被称为生命周期钩子 -> 可以在特定阶段运行代码
    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>Documenttitle>
    head>
    
    <body>
    
      <div id="app">
        <h3>{{ title }}h3>
        <div>
          <button @click="count--">-button>
          <span>{{ count }}span>
          <button @click="count++">+button>
        div>
      div>
      <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
      <script>
        const app = new Vue({
          el: '#app',
          data: {
            count: 100,
            title: '计数器'
          },
          // 1. 创建阶段(准备数据)
          beforeCreate(){
            console.log('beforeCreate 响应式数据准备好之前', this.count) // undefined
          },
          created() {
            console.log('beforeCreate 响应式数据准备好之前', this.count) // 100
          },
          // 2. 挂载阶段(渲染模板)
          beforeMount() {
            console.log('beforeMount 模板渲染之前', document.querySelector('h3').innerHTML) // {{ title }}
          },
          mounted() {
            console.log('mounted 模板渲染之后', document.querySelector('h3').innerHTML) // 计数器
          },
          // 3. 更新阶段(修改数据 -> 更新视图)
          beforeUpdate() {
            console.log('beforeUpdate 数据修改了, 视图还没更新', document.querySelector('span').innerHTML)
          },
          updated() {
            console.log('updated 数据修改了, 视图已经更新', document.querySelector('span').innerHTML)
          },
          // 4. 卸载阶段
          beforeDestroy() {
            console.log('beforeDestroy 卸载前')
            console.log('清除掉一些Vue以外的资源占用, 定时器, 延时器...')
          },
          destroyed() {
            console.log('destroyed 卸载后')
          }
        })
      script>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62

    生命周期案例

    created应用

    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>Documenttitle>
      <style>
        * {
          margin: 0;
          padding: 0;
          list-style: none;
        }
        .news {
          display: flex;
          height: 120px;
          width: 600px;
          margin: 0 auto;
          padding: 20px 0;
          cursor: pointer;
        }
        .news .left {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          padding-right: 10px;
        }
        .news .left .title {
          font-size: 20px;
        }
        .news .left .info {
          color: #999999;
        }
        .news .left .info span {
          margin-right: 20px;
        }
        .news .right {
          width: 160px;
          height: 120px;
        }
        .news .right img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      style>
    head>
    <body>
    
      <div id="app">
        <ul>
          <li class="news" v-for="(item, index) in list" :key="item.id">
            <div class="left">
              <div class="title"> {{item.title}} div>
              <div class="info">
                <span> {{item.source}} span>
                <span> {{item.time}} span>
              div>
            div>
            <div class="right">
              <img :src="item.img" alt="">
            div>
          li>
        ul>
      div>
      <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
      <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js">script>
      <script>
        // 接口地址:http://hmajax.itheima.net/api/news
        // 请求方式:get
        const app = new Vue({
          el: '#app',
          data: {
            list: []
          },
          async created () {
            // 1. 发送请求, 获取数据
            const res = await axios.get('http://hmajax.itheima.net/api/news')
            // 2. 将数据更新给data中的list
            this.list = res.data.data
          }
        })
      script>
    body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86

    mounted应用

    
    DOCTYPE html>
    <html lang="zh-CN">
    
    <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>示例-获取焦点title>
      
      <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reset.css@2.0.2/reset.min.css">
      
      <style>
        html,
        body {
          height: 100%;
        }
        .search-container {
          position: absolute;
          top: 30%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
        }
        .search-container .search-box {
          display: flex;
        }
        .search-container img {
          margin-bottom: 30px;
        }
        .search-container .search-box input {
          width: 512px;
          height: 16px;
          padding: 12px 16px;
          font-size: 16px;
          margin: 0;
          vertical-align: top;
          outline: 0;
          box-shadow: none;
          border-radius: 10px 0 0 10px;
          border: 2px solid #c4c7ce;
          background: #fff;
          color: #222;
          overflow: hidden;
          box-sizing: content-box;
          -webkit-tap-highlight-color: transparent;
        }
        .search-container .search-box button {
          cursor: pointer;
          width: 112px;
          height: 44px;
          line-height: 41px;
          line-height: 42px;
          background-color: #ad2a27;
          border-radius: 0 10px 10px 0;
          font-size: 17px;
          box-shadow: none;
          font-weight: 400;
          border: 0;
          outline: 0;
          letter-spacing: normal;
          color: white;
        }
        body {
          background: no-repeat center /cover;
          background-color: #edf0f5;
        }
      style>
    head>
    
    <body>
    <div class="container" id="app">
      <div class="search-container">
        <img src="https://www.itheima.com/images/logo.png" alt="">
        <div class="search-box">
          <input type="text" v-model="words" id="inp">
          <button>搜索一下button>
        div>
      div>
    div>
    
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
    <script>
      const app = new Vue({
        el: '#app',
        data: {
          words: ''
        },
        // 1. 等输入框渲染出来
        mounted() {
          // 2. 让输入框获取焦点
          document.querySelector('#inp').focus()
        },
      })
    script>
    
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99

    案例 - 小黑记账清单

    • 基本渲染
      1. created请求数据(封装渲染方法)
      2. 将数据更新给data
      3. 数据动态渲染
    • 添加功能
      1. 收集表单数据 v-model
      2. 点击发送添加请求
      3. 重新渲染(封装渲染方法)
    • 删除功能
      1. 点击按钮传递id
      2. 根据id发送删除请求
      3. 重新渲染(封装渲染方法)
    • 饼图渲染
      1. mounted初始化echarts实例
      2. 渲染函数中setOption动态更新饼图(map)
    DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Documenttitle>
        
        <link
          rel="stylesheet"
          href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
        />
        <style>
          .red {
            color: red!important;
          }
          .search {
            width: 300px;
            margin: 20px 0;
          }
          .my-form {
            display: flex;
            margin: 20px 0;
          }
          .my-form input {
            flex: 1;
            margin-right: 20px;
          }
          .table > :not(:first-child) {
            border-top: none;
          }
          .contain {
            display: flex;
            padding: 10px;
          }
          .list-box {
            flex: 1;
            padding: 0 30px;
          }
          .list-box  a {
            text-decoration: none;
          }
          .echarts-box {
            width: 600px;
            height: 400px;
            padding: 30px;
            margin: 0 auto;
            border: 1px solid #ccc;
          }
          tfoot {
            font-weight: bold;
          }
          @media screen and (max-width: 1000px) {
            .contain {
              flex-wrap: wrap;
            }
            .list-box {
              width: 100%;
            }
            .echarts-box {
              margin-top: 30px;
            }
          }
        style>
      head>
      <body>
        <div id="app">
          <div class="contain">
            
            <div class="list-box">
    
              
              <form class="my-form">
                <input type="text" class="form-control" placeholder="消费名称" v-model.trim="name"/>
                <input type="text" class="form-control" placeholder="消费价格" v-model.number="price"/>
                <button type="button" class="btn btn-primary" @click="add">添加账单button>
              form>
    
              <table class="table table-hover">
                <thead>
                  <tr>
                    <th>编号th>
                    <th>消费名称th>
                    <th>消费价格th>
                    <th>操作th>
                  tr>
                thead>
                <tbody>
                  <tr v-for="(item, index) in list" :key="item.id">
                    <td> {{index+1}} td>
                    <td> {{item.name}} td>
                    <td :class="{red: item.price > 500}"> {{item.price.toFixed(2)}} td>
                    <td><a href="javascript:;" @click.prevent="del(item.id)">删除a>td>
                  tr>
                tbody>
                <tfoot>
                  <tr>
                    <td colspan="4">消费总计: {{totalPrice}}td>
                  tr>
                tfoot>
              table>
            div>
            
            
            <div class="echarts-box" id="main">div>
          div>
        div>
        <script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js">script>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
        <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js">script>
        <script>
          /**
           * 接口文档地址:
           * https://www.apifox.cn/apidoc/shared-24459455-ebb1-4fdc-8df8-0aff8dc317a8/api-53371058
           * 
           * 功能需求:
           * 1. 基本渲染
           *  1.1 发送请求获取数据 created
           *  1.2 拿到数据, 存到data的响应式数据中
           *  1.3 结合数据, 进行渲染 v-for
           *  1.4 消费统计 => 计算属性
           * 2. 添加功能
           *  2.1 收集表单数据 v-model
           *  2.2 给添加按钮注册点击事件, 发送添加请求
           *  2.3 需要重新渲染
           * 3. 删除功能
           *  3.1 注册点击事件, 传参传 id
           *  3.2 根据id发送删除请求
           *  3.3 需要重新渲染
           * 4. 饼图渲染
           *  4.1 初始化一个饼图 echarts.init(dom) mounted钩子实现
           *  4.2 根据数据实时更新饼图 echarts.setOption({ ... })
           */
          const app = new Vue({
            el: '#app',
            data: {
              list: [],
              name: '',
              price: '' 
            },
            created () {
              this.getList()
            },
            mounted () {
              this.myChart = echarts.init(document.getElementById('main'))
              this.myChart.setOption({
                // 大标题
                title: {
                  text: '消费账单列表',
                  left: 'center'
                },
                // 提示框
                tooltip: {
                  trigger: 'item'
                },
                // 图例
                legend: {
                  orient: 'vertical',
                  left: 'left'
                },
                // 数据项
                series: [
                  {
                    name: '消费账单',
                    type: 'pie',
                    radius: '50%', // 圆半径
                    data: [],
                    emphasis: {
                      itemStyle: {
                        shadowBlur: 10,
                        shadowOffsetX: 0,
                        shadowColor: 'rgba(0, 0, 0, 0.5)'
                      }
                    }
                  }
                ]
              })
            },
            methods: {
              async getList(){
                const res = await axios.get('https://applet-base-api-t.itheima.net/bill', {
                  params: {
                    creator: 'cen'
                  }
                })
                this.list = res.data.data
    
                // 更新图标
                this.myChart.setOption({
                  series: [
                    {
                      // data: [
                      //   { value: 1048, name: 'Search Engine' },
                      //   { value: 735, name: 'Direct' },
                      // ],
                      data: this.list.map(item => ({value: item.price, name: item.name}))
                    }
                  ]
                })
              },
              async add(){
                if(!this.name){
                  alert('请输入消费名称')
                  return
                }
                if(typeof this.price !== 'number'){
                  alert('请输入正确的消费价格')
                  return
                }
                // 1. 发送添加请求
                const res = await axios.post('https://applet-base-api-t.itheima.net/bill', {
                  creator: 'cen',
                  name: this.name,
                  price: this.price
                })
                // 2. 重新渲染
                this.getList()
    
                this.name = ''
                this.price = ''
              },
              async del(id){
                // 1. 发送删除请求
                const res = await axios.delete(`https://applet-base-api-t.itheima.net/bill/${id}`)
                // 2. 重新渲染
                this.getList()
              }
            },
            computed: {
              totalPrice(){
                return this.list.reduce((sum, item) => sum+item.price, 0)
              }
            }
          })
        script>
      body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236

    工程化开发入门

    工程化开发和脚手架

    • 使用步骤
      1. 全局安装: 右键开始菜单, 在Windows PowerShell(管理员)中输入yarn global add @vue/clinpm i @vue/cli -g
      2. 查看Vue版本: vue --version
      3. 创建项目架子: vue create project-name(项目名不能用中文)
      4. 启动项目: yarn servenpm run serve(找package.json)

    项目运行流程

    index.html

    DOCTYPE html>
    <html lang="">
      <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">
        <link rel="icon" href="<%= BASE_URL %>favicon.ico">
        <title><%= htmlWebpackPlugin.options.title %>title>
      head>
      <body>
        
        <noscript>
          <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.strong>
        noscript>
        
        <div id="app">
          
        div>
        
      body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    main.js

    // 文件核心作用: 导入App.vue, 基于App.vue创建结构渲染index.html
    // 1. 导入 Vue 核心包
    import Vue from 'vue'
    // 2. 导入 App.vue 根组件
    import App from './App.vue'
    
    // 提示: 当前处于生命环境(生产环境 / 开发环境)
    Vue.config.productionTip = false
    
    // 3. Vue实例化, 提供render方法 -> 基于App.vue创建结构渲染index.html
    new Vue({
      // el: '#app', // 作用: 和$mount('选择器')作用一致, 用于指定Vue所管理容器
      // render: h => h(App),
      render: (createElement) => {
        // 基于App创建元素结构
        return createElement(App)
      }
    }).$mount('#app')
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    组件化

    • 组件化: 页面拆分成一个个组件, 每个组件有着独立的结构, 样式, 行为
      • 好处: 便于维护, 利于复用 -> 提升开发效率
      • 组件分类: 普通组件, 根组件
    • 根组件: 整个应用最上层的组件, 包裹所有普通小组件, 一个根组件App.vue, 包含三个部分
      • template结构(只能有一个根节点-vue2)
      • style样式(可以支持less, 需要装包less和less-loader)
      • script行为
    <template>
      <div class="App">
        <div class="box" @click="fn">div>
      div>
    template>
    
    <script>
    export default {
      methods: {
        fn () {
          console.log('点击按钮')
        }
      }
    }
    script>
    
    <style lang="less">
    /*
    让style支持less
    1. 给style加上 lang="less"
    2. 安装依赖包 less less-loader
        npm install less less-loader --save-dev
    */
    .App {
      width: 400px;
      height: 400px;
      background-color: pink;
      .box {
        width: 100px;
        height: 100px;
        background-color: blue;
      }
    }
    style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    组件注册

    • 使用: 当成html标签使用<组件名>
    • 注意:
      • 组件名规范 -> 大驼峰命名法, HmHeader

    局部注册

    局部注册: 只能在注册的组件内使用

    • 创建.vue文件(三个组成部分)
    • 在使用的组件内导入并注册
    
    
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    全局注册

    在main.js中导入

    import HmButton from './components/HmButton.vue'
    Vue.component('HmButton', HmButton)
    
    • 1
    • 2

    来源

    黑马程序员. Vue2+Vue3基础入门到实战项目

  • 相关阅读:
    PDF24 Creator PDF工具箱 v11.17.0
    【PAT甲级 - C++题解】1078 Hashing
    【数据挖掘-思考】分类和聚类
    进程角度和内核角度看进程运行
    DSPE-PEG-DBCO 磷脂-聚乙二醇-二苯并环辛炔供应 X-GF-0295-10k
    PEG包裹上转换荧光纳米颗粒
    【算法】一类支持向量机OC-SVM(1)
    webSoket封装
    时序预测 | MATLAB实现基于LSTM-AdaBoost长短期记忆网络结合AdaBoost时间序列预测
    建立TCP连接后发送窗口, 接收窗口, 拥塞窗口的变化情况
  • 原文地址:https://blog.csdn.net/Y_cen/article/details/133627924