我有一个 Vue 组件,其中包含通过 Apollo 从数据库填充的项目列表:
<DeviceInfo camId="abcd"/>
<DeviceInfo camId="efgh"/>
<DeviceInfo camId="qwer"/>
当响应通过 Apollo 到达时,所有三个 DeviceInfo组件都会同时使用相同的数据进行更新。最后,他们都得到了数据库的最后回应。我希望查询只更新它自己的组件。
有什么建议为什么要共享数据?
我知道的:
- 数据库响应是正确的,并且包含正确 camId 的数据,就apollo/data/updated函数而言。
- Vue 浏览器开发工具为所有DeviceInfo兄弟显示相同的数据对象。
- 我得到与v-for相同的行为
<v-flex v-for="item in data.listUserDevices.items" :key="item.device">
<DeviceInfo :camId="item.device"/>
</v-flex>
下面是DeviceInfo组件的完整代码:
<template v-if="hydrated">
<h2>camId: {{camId}} / {{ data.getLatestDeviceState.items[0].device }}</h2>
</template>
<script>
import gql from "graphql-tag";
const DEV_INFO_QUERY = gql`query getLatestDeviceState($device: String)
{
getLatestDeviceState(device: $device) {
items {
device
timestamp
version
}
}
}
`;
export default {
name: "DeviceInfo",
props: {camId: String},
data() {
return dt;
},
async mounted() {
await this.$apollo.provider.defaultClient.hydrated();
this.hydrated = true;
},
apollo: {
data: {
query: () => DEV_INFO_QUERY,
variables: function() {
return {device: this.camId}
},
update: data => {
return data;
}
}
}
};
let dt = {
data: {
hydrated: false,
getLatestDeviceState: {
items: [{device:"Loading ..."}]
}
}
};
</script>