我正在Nuxt内部使用Apollo获取一些数据。不知何故,导航到该页面时出现错误
Cannot read property 'image' of undefined
刷新页面后,一切正常。
我发现有人遇到类似问题,但似乎没有解决方案对我有用:/
这是我的模板文件:
/products/_slug.vue
<template>
<section class="container">
<div class="top">
<img :src="product.image.url"/>
<h1>{{ product.name }}</h1>
</div>
</section>
</template>
<script>
import gql from 'graphql-tag'
export default {
apollo: {
product: {
query: gql`
query Product($slug: String!) {
product(filter: { slug: { eq: $slug } }) {
slug
name
image {
url
}
}
}
`,
prefetch({ route }) {
return {
slug: route.params.slug
}
},
variables() {
return {
slug: this.$route.params.slug
}
}
}
}
}
</script>
基本上,除非刷新页面,否则$ apolloData保持为空。任何想法将不胜感激
编辑 走近了一步(我认为)。以前,第一次导航到页面时,所有内容(image.url和名称)都将是不确定的。
我添加了:
data() {
return {
product: []
};
}
在导出的顶部,现在至少总是定义名称,因此,如果我删除图像,一切都会按预期进行。只是image.url一直未定义。
我注意到的一件事(不确定相关性)是仅使用会发生此问题,如果我使用正常的标签,它会起作用,但当然会消除vue的魔力。
EDIT-2 所以以某种方式,如果我将Nuxt降级到1.0.0版,一切都会很好
答案 0 :(得分:5)
我也偶然发现了这个问题,并发现它隐藏在Vue Apollo文档中。
尽管与OP的回复非常相似,但似乎正式的方法是使用“ $ loadingKey”属性。
在文档中相当混乱,因为发生了很多事情。 https://vue-apollo.netlify.com/guide/apollo/queries.html#loading-state
<template>
<main
v-if="!loading"
class="my-8 mb-4"
>
<div class="w-3/4 mx-auto mb-16">
<h2 class="mx-auto text-4xl text-center heading-underline">
{{ page.title }}
</h2>
<div
class="content"
v-html="page.content.html"
></div>
</div>
</main>
</template>
<script>
import { page } from "~/graphql/page";
export default {
name: 'AboutPage',
data: () => ({
loading: 0
}),
apollo: {
$loadingKey: 'loading',
page: {
query: page,
variables: {
slug: "about"
}
},
}
}
</script>
如果您需要在vue中使用反应性(例如a),则可以使用以下方法进行操作。
<template>
<main
v-if="!loading"
class="my-8 mb-4"
>
<div class="w-3/4 mx-auto mb-16">
<h2 class="mx-auto text-4xl text-center heading-underline">
{{ page.title }}
</h2>
<div
class="content"
v-html="page.content.html"
></div>
</div>
</main>
</template>
<script>
import { page } from "~/graphql/page";
export default {
name: 'AboutPage',
data: () => ({
loading: 0
}),
apollo: {
$loadingKey: 'loading',
page: {
query: page,
variables() {
return {
slug: this.$route.params.slug
}
}
},
}
}
</script>
答案 1 :(得分:0)
我认为这只是页面加载时间的问题。
如果有多个产品,则应该对产品进行迭代,或者在产品容器上具有v-if="product != null"
,则仅当从GraphQL提取数据后才会呈现。
通过这种方式,只有在真正获取HTML对象时,才在HTML中使用该对象,并避免读取未定义的属性。
答案 2 :(得分:0)
要解决此问题,您可以将 v-if="!$apollo.loading"
添加到您打算在其中使用响应式道具的 HTML 容器。