学习目录
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>Document</title>
</head>
<body>
<div id="app">
<h3>{{ title }}</h3>
<div>
<button @click="count--">-</button>
<span>{{ count }}</span>
<button @click="count++">+</button>
</div>
</div>
<script src="./vue.js"></script>
<script>
const app = new Vue({
el: '#app',
data: {
count: 100,
title: '计数器'
},
//1.创建阶段(准备数据)
beforeCreate(){
console.log('beforeCreat 响应数据准备好之前',this.count)
},
//创建之后(发起申请)
created(){
console.log('created 响应数据准备好之后',this.count)
//this.数据名 = 请求回来的数据
//可以开始发送初始化的请求了
},
//3.挂载阶段(渲染模板)
beforeMount(){
console.log('beforemounte 渲染模板之前',document.querySelector('h3').innerHTML)
// document.querySelector是一个非常有用的DOM查询方法,它可以让你根据CSS选择器来选择文档中的元素。
// 这个方法返回文档中匹配指定CSS选择器的第一个元素。如果没有找到匹配的元素,则返回null。
// 如果需要获取所有匹配的元素,可以使用 document.querySelectorAll。
// innerHTML 是一个非常强大的属性,用于获取或设置指定元素的HTML内容。
// 通过使用 innerHTML,你可以动态地修改网页的内容,这对于创建交互式网页非常有用。
},
//挂载之后(渲染模板之后)
mounted(){
console.log('mounted 渲染模板之后',document.querySelector('h3').innerHTML)
//可以开始操作dom了
},
//3.更新阶段(修改数据时才触发 ->更新视图)
beforeUpdate(){
console.log('beforeUpdate 数据修改了,视图还没更新',document.querySelector('span').innerHTML)
},
updated(){
console.log('Updated 数据修改了,视图已经更新',document.querySelector('span').innerHTML)
},
//4.卸载阶段 app.$destroy() 官方提供卸载指令
beforeDestroy(){
console.log('beforeDestroy 卸载前')
},
destroyed(){
console.log('destroy 卸载后')
console.log('清除掉一些Vue以外的资源占用,定时器,延时器...')
}
})
</script>
</body>
</html>
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>Document</title>
<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="./vue.js"></script>
<script src="./axios.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
console.log(res)
this.list = res.data.data
}
})
</script>
</body>
</html>
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="./vue.js"></script>
<script>
const app = new Vue({
el: '#app',
data: {
words: ''
},
//聚焦核心思想:
//1.等输入框渲染出来
//2.让输入框获取焦点
mounted(){
document.querySelector('#inp').focus()
}
})
</script>
</body>
</html>
vue生命周期总结
案例:小黑记账清单(接口请求)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- CSS only -->
<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 v-model.trim="addname" type="text" class="form-control" placeholder="消费名称" />
<input v-model.number="addprice" type="text" class="form-control" placeholder="消费价格" />
<button type="button" @click="add" class="btn btn-primary">添加账单</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 @click="del(item.id)" href="javascript:;">删除</a></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">消费总计:{{totalPrice.toFixed(2)}} </td>
</tr>
</tfoot>
</table>
</div>
<!-- 右侧图表 -->
<div class="echarts-box" id="main"></div>
</div>
</div>
<script src="../echarts.min.js"></script>
<script src="../vue.js"></script>
<script src="../axios.js"></script>
<script>
/**
* 接口文档地址:
* https://www.apifox.cn/apidoc/shared-24459455-ebb1-4fdc-8df8-0aff8dc317a8/api-53371058
*
* 功能需求:
* 1. 基本渲染
* (1)立刻发送请求获取数据 created
* (2)拿到数据,存到data的响应式数据中
* (3)结合数据,进行渲染 v-for
* (4)消费统计 => 计算属性
* 2. 添加功能
* (1)收集表单数据 v-model
* (2)给添加按钮注册点击事件,发送添加请求
* (3)需要重新渲染
* 3. 删除功能
* (1)注册点击事件,传参传id
* (2)根据id发送删除请求
* (3)需要重新渲染
* 4. 饼图渲染
* (1)初始化一个饼图 echarts mounted钩子中实现
* (2)根据数据实时更新饼图
*/
const app = new Vue({
el: '#app',
data: {
list:[],
addname:'',
addprice:'',
},
//创建阶段(数据准备好了),发送请求
created(){
// //get时,当get有属性要通过在对象里写params参数
// const res = await axios.get('https://applet-base-api-t.itheima.net/bill',
// {
// params:{
// creator:'小徐'
// }
// } )
// // console.log(res)
// this.list = res.data.data
this.getlist()
},
//模板渲染后
mounted(){
this.myChart = echarts.init(document.querySelector('#main'))
this.myChart.setOption( {
//大标题
title: {
text: '消费账单',
// subtext: 'Fake Data',小标题
left: 'center'
},
//提示框
tooltip: {
trigger: 'item'
},
//图例
legend: {
orient: 'vertical',
left: 'left'
},
series: [
{
name: '消费账单',
type: 'pie',
radius: '50%', //半径
data: [
// // { value: 1048, name: 'Search Engine' },
// // { value: 735, name: 'Direct' },
// // { value: 580, name: 'Email' },
// // { value: 484, name: 'Union Ads' },
// // { value: 300, name: 'Video Ads' }
],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
})
},
methods:{
async getlist(){ //渲染请求方法封装,方便多处调用
//get时,当get有属性要通过在对象里写params参数
const res = await axios.get('https://applet-base-api-t.itheima.net/bill',
{
params:{
creator:'小徐'
}
} )
// console.log(res)
this.list = res.data.data
//更新图标
this.myChart.setOption({
//数据配置项
series: [
{
// name: '消费账单',
// type: 'pie',
// radius: '50%', //半径
// data: [
// // { value: 1048, name: 'Search Engine' },
// // { value: 735, name: 'Direct' },
// ],
data:this.list.map(item => ({value: item.price,name:item.name}))
//箭头函数中要得到对象,要用括号将对象括起来,不加括号会被识别为代码段
//这部分数据已经传过且不更改可以不要
// emphasis: {
// itemStyle: {
// shadowBlur: 10,
// shadowOffsetX: 0,
// shadowColor: 'rgba(0, 0, 0, 0.5)'
// }
// }
}
]
})
},
async add(){
//发送添加请求
if(!this.addname){
alert('请输入商品名称')
}
if(typeof this.addprice !=='number'){
alert('请输入正确价格')
}
const res = await axios.post('https://applet-base-api-t.itheima.net/bill',
{
creator:'小徐',
name:this.addname,
price:this.addprice
})
//重新渲染一次
this.getlist()
this.addname=''
this.addprice=''
},
async del(id){
//根据id发送删除请求
const res = await axios.delete(`https://applet-base-api-t.itheima.net/bill/${id}`)
//反引号:用于定义模板字符串,支持嵌入表达式和多行文本
//嵌入表达式:只有在模板字符串中才能使用 ${expression} 来嵌入表达式。
// console.log(res)
this.getlist()
}
},
computed:{
totalPrice(){
return this.list.reduce((sum,item) => sum + item.price,0)
}
}
})
</script>
</body>
</html>