定义:要用的属性不存在,要通过已有的属性计算得来
原理:底层借助了Object.defineProperty方法提供的getter和setter
get函数什么时候执行
优势:与methods实现相比,内部有缓存机制(复用),效率更高,调试方便
备注:
<div id="app">
姓:<input type="text" v-model="firstName"><br><br>
名:<input type="text" v-model="lastName"><br><br>
全名:<span>{{fullName}}span>
div>
<script>
Vue.config.productionTip = false
const vm = new Vue({
el:'#app',
data:{
firstName:'张',
lastName:'三'
},
computed:{
fullName:{
get(){
return this.firstName + '-' + this.lastName
},
set(value){
let arr = value.split('-')
this.firstName = arr[0]
this.lastName = arr[1]
}
}
}
})
script>
注意:只有当读取数据时才能写简写形式,fullName(){}实际上等价于fullName:function(){},插值语句里还是写fullName
computed:{
fullName(){
return this.firstName + '-' + this.lastName
}
}
当被监视的属性发生变化时,回调函数自动调用,进行相关操作
监视的属性必须存在,才能进行监视
监视的两种写法
<div id="app">
<h1>今天天气很{{showMsg}}</h1>
<button @click="changeWeather">点我切换天气</button>
</div>
<script>
Vue.config.productionTip = false
const vm = new Vue({
el:'#app',
data:{
isHot:true
},
computed:{
showMsg(){
return this.isHot ? '炎热' : '凉爽'
}
},
methods: {
changeWeather(){
this.isHot = !this.isHot
}
},
watch:{
isHot:{
immediate:true,//初始化让handler调用一下
//handler何时调用?当监视的属性发生变化时
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
},
/* showMsg:{
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
} */
}
})
vm.$watch('showMsg',{
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
})
</script>
Vue中的watch默认不监测对象内部值的改变(一层)
配置deep:true可以监测对象内部值的改变(多层)
备注:
<div id="app">
<h1>今天天气很{{showMsg}}</h1>
<button @click="changeWeather">点我切换天气</button><br><br>
<hr>
<span>{{number.c.d.e}}</span><br>
<button @click="number.c.d.e++">点我e加加</button>
</div>
<script>
Vue.config.productionTip = false
const vm = new Vue({
el:'#app',
data:{
isHot:true,
number:{
a:18,
b:20,
c:{
d:{
e:2
}
}
}
},
computed:{
showMsg(){
return this.isHot ? '炎热' : '凉爽'
}
},
methods: {
changeWeather(){
this.isHot = !this.isHot
}
},
watch:{
isHot:{
immediate:true,//初始化让handler调用一下
//handler何时调用?当监视的属性发生变化时
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
},
//监视多级结构中某个属性的变化
'number.a':{
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
},
//监视多级结构中所有属性的变化
number:{
deep:true,
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
}
}
})
</script>
//watch监视简写,只有当不配置其他属性时才可以用
isHot(newValue,oldValue){
console.log(newValue,oldValue)
}
vm.$watch('isHot',{
handler(newValue,oldValue){
console.log(newValue,oldValue)
}
})
vm.$watch('isHot',function (newValue,oldValue){
console.log(newValue,oldValue)
})
computed能完成的功能,watch都可以完成
watch能完成的功能,computed不一定能完成,例如:watch可以进行异步操作
两个重要的小原则
watch:{
firstName(val){
setTimeout(() => {
this.fullName = val + '-' + this.lastName
},1000)
},
lastName(val){
this.fullName = this.firstName + '-' + val
}
}
class样式
写法:class=“xxx” xxx可以是字符串、对象、数组
style样式
写法:
v-if="表达式"
v-else-if="表达式"
v-else="表达式"
适用于:切换频率低的场景
特点:不展示的DOM元素直接被移除
注意:v-if可以和:v-else-if、v-else一起使用,但要求结构不能被“打断”
备注:使用v-if的时,元素可能无法获取到,而使用v-show一定可以获取到
用于展示列表数据
语法:v-for=“(item, index) in xxx” :key=“yyy”
可遍历:数组、对象、字符串(用的很少)、指定次数(用的很少)
<ul>
<li v-for="p in persons" :key="p.id">
{{p.name}}--{{p.age}}
li>
ul>
<ul>
<li v-for="(value,name) in car" :key="name">
{{name}}---{{value}}
li>
ul>
<ul>
<li v-for="(s,index) in str" :key="index">
{{s}}
li>
ul>
<ul>
<li v-for="(val,index) in 5" :key="index">
{{val}}---{{index}}
li>
ul>
//模拟一个数据监测
let data = {
name:'lai',
age:22
}
let vm = {}
let obs = new Observer(data)
console.log(obs)
vm._data = data = obs
console.log(vm)
function Observer(obj){
//汇总对象中所有的属性形成一个数组
const keys = Object.keys(obj)
console.log(keys)
keys.forEach((k) => {
console.log(k)
Object.defineProperty(this,k,{
get(){
return obj[k]
},
set(v) {
obj[k] = v
console.log('被改了',obj[k])
}
})
})
}