Vue 子组件依赖 props,父组件多个异步请求的 data 通过 props 传入子组件,子组件组要监听 props 的值是否存在作为下一步需求代码的执行条件,此时,就需要一次性监听多个 data 值了。
解决
computed 和 watch 连用,watch 监听 computed 的属性。
利用 computed 属性依赖变化会导致重新计算的机制可以更加优雅的实现同时监听多个属性变化的效果,而且由于 computed 是有缓存机制的,性能上也更具优势。
示例:
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
| <template> <div>...</div> </template> <script> export default { name: 'ChrildComp' props: { orderDetail: { type: Object, default: () => {} }, userInfo: { type: Object, default: () => {} } }, data() { return {} }, computed: { changeData() { const { orderDetail, userInfo } = this return { orderDetail, userInfo } } }, watch: { changeData: function (newV) { const { orderDetail, userInfo } = newV if (Object.prototype.toString.call(orderDetail) === '[object Object]' && Object.keys(orderDetail).length > 0) { console.log('changeData', orderDetail, userInfo) } } }, methods: {
} } </script>
|