Vue.js“超出最大调用堆栈大小”错误。将数据从父级传递到子级失败
2017-06-13
149417
我无法将数据从父级传递给子级。我正在使用 props,也尝试过返回数据 - 没有成功。我有一个面板组件(父级),其中包含数据和 panelBody 组件(子级)
面板如下:
<template>
<div id="panel">
<div class="panel">
<ul>
<li v-for="shelf in shelfs">
<panel-body :shelf="shelf" :selected.sync="selected"></panel-body>
</li>
</ul>
</div>
</div>
</template>
<script>
import PanelBody from '../components/PanelBody'
export default {
name: 'panel-body',
components: {
'panel-body': PanelBody
},
data: () => ({
shelfs: [{
name: 'shelf 1',
books: [{
title: 'Lorem ipum'
}, {
title: 'Dolor sit amet'
}]
}, {
name: 'shelf 2',
books: [{
title: 'Ipsum lorem'
}, {
title: 'Amet sit dolor'
}]
}],
selected: {}
})
}
</script>
<style scoped>
a {
color: #42b983;
}
</style>
我的 panelBody 是:
<template>
<div id="panel-body">
<a href="#" v-on:click.prevent.stop="select">{{ shelf.name }}</a>
<ul v-show="isSelected">
<li v-for="book in shelf.books">{{ book.title }}</li>
</ul>
</div>
</template>
<script>
export default {
name: 'panel-body',
props: ['shelf', 'selected'],
computed: {
isSelected: function () {
return this.selected === this.shelf
}
},
methods: {
select: function () {
this.selected = this.shelf
}
}
}
</script>
<style scoped>
a {
color: #42b983;
}
</style>
请帮忙!无法找出错误“vue.esm.js?65d7:3877 Uncaught RangeError: 超出最大调用堆栈大小”。当我删除数据时,一切都正常。
3个回答
出现错误的原因
Maximum call stack size exceeded
是因为这个
import PanelBody from '../components/PanelBody'
export default {
name: 'panel-body',
components: {
'panel-body': PanelBody
},
您使用
name: 'panel-body'
定义了
Panel
组件。将其更改为
name: 'panel'
,即可删除循环引用。
评论中提到的其他问题和其他答案通常也适用。以下是您的组件的工作版本。
Panel.vue
<template>
<div id="panel">
<div class="panel">
<ul>
<li v-for="shelf in shelfs">
<panel-body :shelf="shelf" :key="shelf.name" :selected.sync="selected"></panel-body>
</li>
</ul>
</div>
{{selected}}
</div>
</template>
<script>
import PanelBody from './PanelBody.vue'
export default {
name: 'panel',
components: {
'panel-body': PanelBody
},
data(){
return {
shelfs: [{
name: 'shelf 1',
books: [{
title: 'Lorem ipum'
}, {
title: 'Dolor sit amet'
}]
}, {
name: 'shelf 2',
books: [{
title: 'Ipsum lorem'
}, {
title: 'Amet sit dolor'
}]
}],
selected: {}
}
}
}
</script>
<style scoped>
a {
color: #42b983;
}
</style>
PanelBody.vue
<template>
<div id="panel-body">
<a href="#" v-on:click.prevent.stop="select">{{ shelf.name }}</a>
<ul v-show="isSelected">
<li v-for="book in shelf.books">{{ book.title }}</li>
</ul>
</div>
</template>
<script>
export default {
name: 'panel-body',
props: ['shelf', 'selected'],
data(){
return {
internalSelected: null
}
},
computed: {
isSelected: function () {
return this.internalSelected === this.shelf
}
},
methods: {
select: function () {
this.internalSelected = this.shelf
this.$emit("update:selected", this.internalSelected)
}
}
}
</script>
<style scoped>
a {
color: #42b983;
}
</style>
我想再注意一件事。由于
PanelBody
中的
此
行,
this.selected = this.shelf
Vue 将发出警告,提示您正在直接改变 prop。通常,您应该存储要改变的属性的本地副本。我已更新上述代码以执行此操作。
Bert
2017-06-13
您所在的 Vue 的名称不应等于您正在导入的组件的名称。
就我而言
<template>
<div>
<SingleStandard></SingleStandard>
</div>
</template>
<script>
import SingleStandard from '../components/SingleStandard';
export default {
name: 'SingleStandard',
components: { SingleStandard },
};
</script>
上述代码导致了同样的问题,但是当我更改 导出组件的名称 时,它起作用了。
<template>
<div>
<SingleStandard></SingleStandard>
</div>
</template>
<script>
import SingleStandard from '../components/SingleStandard';
export default {
name: 'SingleStandardView', <-------------
components: { SingleStandard },
};
</script>
请为所有未来用户检查您的命名约定 :)
Sweet Chilly Philly
2019-04-30
尝试禁用 vue dev-tools 扩展...
我的应用程序几个月来一直出现这种不稳定的错误,这让我抓狂! 我刚刚意识到,如果我 禁用 vue dev-tool chrome 扩展,这种情况就不会再发生。
虽然不完美,但可以提供帮助。
Ousmane
2022-01-05