我有一组触发某些类型弹出窗口的本地状态的突变。他们一般是这样设置的:
openDialog: (_, variables, { cache }) => {
const data = {
popups: {
...popups,
dialog: {
id: 'dialog',
__typename: 'Dialog',
type: variables.type
}
}
};
cache.writeData({
data: data
});
return null;
}
我传入的默认值如下所示:
const defaults = {
popups: {
__typename: TYPENAMES.POPUPS,
id,
message: null,
modal: null,
menu: null,
dialog: null
}
};
它们在我的 React 代码中的使用方式是使用 Mutation 包装器组件,如下所示:
const OPEN_ALERT_FORM = gql`
mutation AlertOpenDialog($type: String!) {
openDialog(type: $type) @client
}
`;
class Alert extends Component {
render() {
return (
<Mutation mutation={OPEN_ALERT_FORM} variables={{ type: ALERT_FORM }}>
{openDialog => {
return (
<Button
classes="alert-button"
onClick={openDialog}
label="Trigger Alert"
/>
);
}}
</Mutation>
);
}
}
对于我的各种弹出窗口(我有 3 或 4 个不同的弹出窗口,例如menu
和modal
),打开和关闭它们的更改看起来都一样,只是类型名称和内容不同等。但是,对于对话框,当我单击它们时出现此错误:
网络错误:缺少为查询字段对话框返回的 Dialog 类型对象的选择集
...然后触发组件从页面上消失。另外,一旦发生这种情况,当您尝试单击它们时,所有其他弹出类型都会消失,然后重新抛出该错误,或者说:
未捕获的错误:引发了跨源错误。React 无权访问开发中的实际错误对象。
我尝试重新编写对话框以匹配其他弹出类型,并重新编写组件,但我仍然收到此错误。它似乎是特定于对话+阿波罗的。这个问题的根源是什么?它不能是后端的东西,因为这只是与本地 Apollo 打交道。我以前没有见过这个错误,我不知道从哪里开始。