【发布时间】:2017-09-06 05:28:48
【问题描述】:
为什么订阅完成后我的数据未定义? 我想弄清楚我的 props.data.allLocations 的 undefined 来自哪里。任何帮助将不胜感激。
//高阶组件
export const LocationList = graphql(
gql`
query ($site: ID!) {
allLocations(
filter: {
site: {
id:$site
}
}
) {
id
name
}
}
`,
{
options: (ownProps)=>({
variables: {
site: ownProps.site
},
}),
//props were injected from the JSX element
props: props => {
return {
data: props.data,
subscribeToData: params => {
return props.data.subscribeToMore({
document:
gql`
subscription newLocations {
Location {
mutation
node {
id
name
}
}
}
`,
variables: {
//Empty for now
//site: props.site,
},
updateQuery: (previousState, {subscriptionData}) => {
if (!subscriptionData.data) {
return previousState;
}
var newArray =[subscriptionData.data.Location.node].concat(previousState.allLocations)
var newState = {
...previousState,
allLocations: [
{
...subscriptionData.data.Location.node
},
...previousState.allLocations
],
};
return newState
}
})
},
}
},
onError: (err) => console.error(err)
} )(EntityList)
//列表组件
class EntityList extends Component {
componentWillReceiveProps(newProps) {
if (!newProps.data.loading) {
console.log(newProps)
if (this.subscription && this.props.hasOwnProperty('subscribeToData')) {
if (newProps.data.allLocations !== this.props.data.allLocations) {
console.log("Resubscribe")
// if the todos have changed, we need to unsubscribe before resubscribing
this.subscription()
} else {
console.log('else')
// we already have an active subscription with the right params
return
}
}
this.subscription = this.props.subscribeToData(newProps)
}}
render () {
if (this.props.data.loading) {
return (<div>Loading</div>)
}
var Entities = [];
for(var key in this.props.data) {
if(this.props.data[key] instanceof Array){
Entities = Entities.concat(this.props.data[key])
//console.log(this.props.data[key])
}
}
return (
<div className='w-100 flex justify-center bg-transparent db' >
<div className='w-100 db' >
{Entities.map((entity) =>
(
<EntityListView
user={this.props.user}
key={entity.id}
entityId={entity.id}
name={entity.name}
profilePic={(entity.profilePic)?entity.profilePic.uuid : this.props.defaultPic.uuid}
clickFunc={this.props.clickFunc}
/>
))}
</div>
</div>
)
}
}
【问题讨论】:
-
请确保代码格式正确!在调用
graphql之前将调用gql的结果提取到单独的变量中,然后只在调用中引用这些变量以使其更具可读性,这可能是一个好主意。另外,请提供有关确切错误消息的更多信息,否则将很难提供帮助。 -
谢谢,我实际上没有收到任何错误消息。当我将订阅功能添加到道具中时,注入的数据道具消失了,所以我将它添加到我自己的数据对象中,并使用数据:props.data。但是现在当我订阅时,我从数据中丢失了 allLocations 属性。也许我误解了更新查询返回的内容,因为我认为它会给我一个数据对象。
-
另外,我已经能够通过在较低组件中调用我的订阅查询来让订阅工作,但我认为这会降低我的代码的可重用性,因为我将多次重复这个过程数据模型。我会听取您的建议并尝试拆分查询。我让你知道情况如何。谢谢
标签: reactjs graphql apollo graphql-subscriptions