admin管理员组文章数量:1344201
I'm using Vuex to handle my application state.
I need to make an Ajax Get request to a rest api and then show some objects list.
I'm dispatching an action that loads this data from the server but then I don't know how to handle it on the ponent.
Now I have this:
//ponent.js
created(){
this.$store.dispatch("fetch").then(() => {
this.objs = this.$store.state.objs;
})
}
But I don't think that the assignment of the ining data to the local property is the correct way to handle store data.
Is there a way to handle this better? Maybe using mapState?
Thanks!
I'm using Vuex to handle my application state.
I need to make an Ajax Get request to a rest api and then show some objects list.
I'm dispatching an action that loads this data from the server but then I don't know how to handle it on the ponent.
Now I have this:
//ponent.js
created(){
this.$store.dispatch("fetch").then(() => {
this.objs = this.$store.state.objs;
})
}
But I don't think that the assignment of the ining data to the local property is the correct way to handle store data.
Is there a way to handle this better? Maybe using mapState?
Thanks!
Share Improve this question edited May 17, 2018 at 8:00 Akash lal 3146 silver badges19 bronze badges asked May 17, 2018 at 2:45 Fausto SanchezFausto Sanchez 5422 gold badges7 silver badges25 bronze badges 01 Answer
Reset to default 10There are many ways you can do it, you must experiment and find the one that fits your approach by yourself. This is what I suggest
{ // the store
state: {
something: ''
},
mutations: {
setSomething (state, something) {
// example of modifying before storing
state.something = String(something)
}
},
actions: {
fetchSomething (store) {
return fetch('/api/something')
.then(data => {
store.mit('setSomething', data.something)
return store.state.something
})
})
}
}
}
{ // your ponent
created () {
this.$store
.dispatch('fetchSomething')
.then(something => {
this.something = something
})
.catch(error => {
// you got an error!
})
}
}
For better explanations: https://vuex.vuejs/en/actions.html
Now, if you're handling the error in the action itself, you can simply call the action and use a puted property referencing the value in the store
{
puted: {
something () { // gets updated automatically
return this.$store.state.something
}
},
created () {
this.$store.dispatch('loadSomething')
}
}
本文标签: javascriptHow to handle vuex store to fetch data from rest apiStack Overflow
版权声明:本文标题:javascript - How to handle vuex store to fetch data from rest api? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743708962a2525597.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论