在 Vue.js 中创建幻灯片时出现以下错误:
[Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next
at <Anonymous key=1 >
at <Anonymous pager="true" options= {initialSlide: 1, speed: 400} >
at <Anonymous fullscreen=true >
at <IonPage isInOutlet=true registerIonPage=fn<registerIonPage> >
at <Product Details ref=Ref< Proxy {…} > key="/products/1" isInOutlet=true ... >
at <IonRouterOutlet>
at <IonApp>
at <App>
未捕获(承诺中)DOMException:无法在“节点”上执行“insertBefore”:要插入新节点的节点不是该节点的子节点。
Uncaught (in promise) DOMException: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.
at insert (webpack-internal:///./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js:222:16)
at mountElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:3958:9)
at processElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:3899:13)
at patch (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:3819:21)
at componentEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4312:21)
at reactiveEffect (webpack-internal:///./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js:71:24)
at effect (webpack-internal:///./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js:46:9)
at setupRenderEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4277:89)
at mountComponent (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4235:9)
at processComponent (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4195:17)
如果我添加硬编码的幻灯片,它不会显示任何错误。但是,如果我使用 v-for
循环动态添加幻灯片,则会显示上述错误。
我通过以下方式添加了幻灯片:
这是模板:
<ion-slides pager="true" :options="slideOpts">
<ion-slide v-for="image in product.product_images" v-bind:key="image.id">
<h1>Slide 1</h1>
</ion-slide>
</ion-slides>
这是脚本:
export default {
name: "Product Details",
components: {
IonContent,
IonHeader,
IonPage,
IonTitle,
IonToolbar,
IonSlides,
IonSlide,
},
data() {
return {
product: {},
};
},
setup() {
// Optional parameters to pass to the swiper instance. See http://idangero.us/swiper/api/ for valid options.
const slideOpts = {
initialSlide: 1,
speed: 400,
};
return { slideOpts };
},
mounted: function () {
fetch("http://localhost:4000/api/products/" + this.$route.params.id, {
method: "get",
})
.then((response) => {
return response.json();
})
.then((jsonData) => {
this.product = jsonData;
// console.log(jsonData.product_images);
});
},
};
我在代码中做错了什么?
原文由 Hello World 发布,翻译遵循 CC BY-SA 4.0 许可协议
可以说,这个错误消息可以得到改进。
该错误是由于尝试使用
v-for
迭代不可迭代(在您的情况下undefined
)引起的。 Specifically, before the call made inmount()
returns,product.product_images
isundefined
, because you initiateproduct
as empty object.Vue 2 风格的解决方案
product.product_image
实例化为可迭代:或在模板中提供一个空数组作为后备:
或将
v-if
放在v-for
的父级上:Vue 3 风格的解决方案
通过给它一个
async setup
函数,使整个ProductDetails
组件暂停。在setup
函数中,调用获取产品。概念证明:
Now place
<product-details>
into a<Suspense>
’s<template #default>
, providing a fallback template (which will be rendered while<Suspense>
all the async components在其默认模板中找到):使用
<Suspense>
的美妙(和优雅)在于父级不需要知道尚未呈现标记的实际条件。它只是等待所有可挂起的组件解决。简而言之,使用
<Suspense>
您不再需要使用v-if
将渲染逻辑硬编码到模板中,并在包装器上明确指定条件。每个异步子组件都包含自己的条件,它向父组件宣布的只是:我完成了。全部完成后,它们被渲染。