gpt4 book ai didi

vue.js - 如何解决nuxt.js中的最大调用堆栈大小超出错误

转载 作者:行者123 更新时间:2023-12-04 01:44:45 25 4
gpt4 key购买 nike

我正在尝试使用 axios 从 firebase 获取数据。我正在使用 vuex 存储来处理我的所有数据。

我有这两个操作来获取数据并存储它:

nuxtServerInit(vuexContext, context) {
return axios
.get("https://nuxt-blog.firebaseio.com/posts.json")
.then(res => {
const postsArray = [];
for (const key in res.data) {
postsArray.push({ ...res.data[key], id: key });
}
vuexContext.commit("setPosts", postsArray);
})
.catch(e => context.error(e));
},
setPosts(vuexContext, posts) {
vuexContext.commit("setPosts", posts);
}

我不知道这段代码有什么问题,但它给了我这个错误:

Maximum call stack size exceeded

errors on terminal

最佳答案

您应该只将 POJO 对象放入 vuex。很可能您将一些嵌套严重的对象放入其中。例如。 res.data包含一些你正在放入 vuex 的非 Pojo 对象

关于vue.js - 如何解决nuxt.js中的最大调用堆栈大小超出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55759151/

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