在计算属性内定义变量是否会对Vue组件的性能产生影响?
背景:我建立了一个表格组件,该组件通常根据传递的数据生成一个HTML表格,并且每列具有不同的过滤器,整个表的过滤器,排序键等,所以我在计算所得的属性中定义了许多局部变量。
想象一下有一个对象数组:
let data = [
{ a: 1, b: 2, c: 3 },
{ a: 11, b: 22, c: 33 }
]
Vue组件用于显示数据的..
<template>
<div>
<input type="text" v-model="filterKey" />
</div>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr v-for="(obj, index) in filteredData" :key="index">
<td v-for="(value, key) in obj" :key="key">
{{ value }}
</td>
</tr>
</tbody>
</table>
</template>
通过输入过滤数据:
<script>
export default {
props: {
passedData: Array
},
data() {
return {
filterKey: null
};
},
computed: {
filteredData() {
// defining local scope variables
let data = this.passedData;
let filterKey = this.filterKey;
data = data.filter(e => {
// filter by filterKey or this.filterKey
});
return data;
}
}
};
</script>
我的问题是指let data = ..
和let filterKey = ..
,因为filteredData()
(在filterKey
中定义)的任何更改都触发了data()
,因此局部变量也更新了,尽管它们不是以Vue方式“反应”的。
在计算属性内定义局部变量时,对性能有影响吗?您是否应该直接在计算属性的内部使用data()
中的反应变量(例如this.filterKey
)?
答案 0 :(得分:2)
测试某些东西是否会影响性能的最好方法是进行实际测试。
根据下面的测试,使用this.passedData
而不是在函数顶部添加变量会使一致性降低1000%以上。 (869ms vs 29ms)
请确保您在编写应用程序的目标浏览器上运行基准测试,以获得最佳结果。
function time(name, cb) {
var t0 = performance.now();
const res = cb();
if(res !== 20000000) {
throw new Error('wrong result: ' + res);
}
var t1 = performance.now();
document.write("Call to "+name+" took " + (t1 - t0) + " milliseconds.<br>")
}
function withoutLocalVar() {
const vue = new Vue({
computed: {
hi() {
return 1;
},
hi2() {
return 1;
},
test() {
let sum = 0;
for(let i = 0; i < 10000000; i++) { // 10 000 000
sum += this.hi + this.hi2;
}
return sum;
},
}
})
return vue.test;
}
function withLocalVar() {
const vue = new Vue({
computed: {
hi() {
return 1;
},
hi2() {
return 1;
},
test() {
let sum = 0;
const hi = this.hi;
const hi2 = this.hi2;
for(let i = 0; i < 10000000; i++) { // 10 000 000
sum += hi + hi2;
}
return sum;
},
}
})
return vue.test;
}
function benchmark() {
const vue = new Vue({
computed: {
hi() {
return 1;
},
hi2() {
return 1;
},
test() {
let sum = 0;
const hi = 1;
const hi2 = 1;
for(let i = 0; i < 10000000; i++) { // 10 000 000
sum += hi + hi2;
}
return sum;
},
}
})
return vue.test;
}
time('withoutLocalVar - init', withoutLocalVar);
time('withLocalVar - init', withLocalVar);
time('benchmark - init', benchmark);
time('withoutLocalVar - run1', withoutLocalVar);
time('withLocalVar - run1', withLocalVar);
time('benchmark - run1', benchmark);
time('withoutLocalVar - run2', withoutLocalVar);
time('withLocalVar - run2', withLocalVar);
time('benchmark - run2', benchmark);
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>