gpt4 book ai didi

javascript - 相当于 Vue.js 中的 React 容器和展示组件

转载 作者:行者123 更新时间:2023-12-01 16:05:00 31 4
gpt4 key购买 nike

我想将组件的业务逻辑模板分开。在 React 中,我会使用 Container/Presentation 模式。

const Container = (props) => <Presentational ...props/> 

但是 vue.js 的等价物是什么?

说我把这一切都放在一个组件中(没有测试这个,只是为了举例):

<template>
<div id="app">
<div v-for="user in users">
{{user.name}}
</div>
</div>
</template>

<script>
Vue.component({
el: '#app',
props: {
filter: "foo"
},
data: {
users: [],
},
ready: function () {
this.$http.get('/path/to/end-point?filter='+this.props.filter)
.then(function (response) {
this.users = response.data
})
}
})
</script>

如何仅使用获取逻辑提取容器?

最佳答案

我真的没有看到需要容器组件。将您的获取代码抽象为一个 vuex 操作,并使用计算属性将您的商店状态绑定(bind)到组件中。

关于javascript - 相当于 Vue.js 中的 React 容器和展示组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44135617/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com