vue 计算属性

计算属性 缓存 vs methods 的区别

不经过计算属性 可以再method中定义一个相同的函数来替代 对于最终结果的实现 两种方式确实是相同的

区别在于 计算属性会基于它的依赖缓存 

也就是说 计算属性只有在他的相关依赖发生改变时才会重新取值 也就是说 只要数据绑定的值没有发生变化,多次访问执行的函数计算属性会立即返回之前的计算结果,不必再执行函数

而 method每当重新渲染的时候 就会调用执行函数

 

计算属性vs watchedProperty

$watch 用于观察vue实例上的数据变动  代码相对会是命令式和重复的

相比较而言 使用计算属性computed

 

计算setter

计算属性默认只有getter 不过自己可以在需要的时候提供一个setter

// ...
computed: {
fullName: {
// getter
get: function () {
return this.firstName + ' ' + this.lastName
},
// setter
set: function (newValue) {
var names = newValue.split(' ')
this.firstName = names[0]
this.lastName = names[names.length - 1]
}
}
}
// ..

 

观察watchers

当想要在数据变化响应时 执行异步操作或者开销较大的操作,可以使用vue通过watch选项来响应数据的变化

<div id="watch-example">
<p>
Ask a yes/no question:
<input v-model="question">
</p>
<p>{{ answer }}</p>
</div>
 
<!-- Since there is already a rich ecosystem of ajax libraries -->
<!-- and collections of general-purpose utility methods, Vue core -->
<!-- is able to remain small by not reinventing them. This also -->
<!-- gives you the freedom to just use what you're familiar with. -->
<script src="https://unpkg.com/axios@0.12.0/dist/axios.min.js"></script>
<script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script>
<script>
var watchExampleVM = new Vue({
el: '#watch-example',
data: {
question: '',
answer: 'I cannot give you an answer until you ask a question!'
},
watch: {
  // 如果 question 发生改变,这个函数就会运行
question: function (newQuestion) {
this.answer = 'Waiting for you to stop typing...'
this.getAnswer()
}
},
methods: {
  // _.debounce 是一个通过 lodash 限制操作频率的函数。
  // 在这个例子中,我们希望限制访问yesno.wtf/api的频率
  // ajax请求直到用户输入完毕才会发出
  // 学习更多关于 _.debounce function (and its cousin
// _.throttle), 参考: https://lodash.com/docs#debounce
getAnswer: _.debounce(
function () {
if (this.question.indexOf('?') === -1) {
this.answer = 'Questions usually contain a question mark. ;-)'
return
}
this.answer = 'Thinking...'
var vm = this
axios.get('https://yesno.wtf/api')
.then(function (response) {
vm.answer = _.capitalize(response.data.answer)
})
.catch(function (error) {
vm.answer = 'Error! Could not reach the API. ' + error
})
},
// 这是我们为用户停止输入等待的毫秒数
500
)
}
})
</script>

在这个示例中,使用 watch 选项允许我们执行异步操作(访问一个 API),限制我们执行该操作的频率,并在我们得到最终结果前,设置中间状态。这是计算属性无法做到的。

 

posted @ 2017-08-08 15:40  深海溺梦  阅读(54)  评论(0)    收藏  举报