gpt4 book ai didi

javascript - 用户界面不反射(reflect)突变后的变化

转载 作者:行者123 更新时间:2023-11-29 10:59:36 25 4
gpt4 key购买 nike

我正在使用 QueryRenderer 在我的应用程序中填充编辑表单。数据也显示在整个页面的其他 DOM 元素中。然后我通过突变将值保存回表单提交。一切都很好,除了我的用户界面没有反射(reflect)后记的变化。这是我的初始查询:

    query EditPlanDialogQuery($planId: Int!) {
planByPlanId(planId: $planId) {
nodeId
...fields
}
allSchedules {
nodes {
...fields
}
}
}

然后我的突变和包装函数定义如下:

    mutation EditPlanDialogMutation($input: UpdatePlanInput!) {
updatePlan(input: $input) {
plan {
...fields
}
}
}

...

    editPlan = (values: any) => {
const {
nodeId,
...otherValues
} = values;
const variables = {
input: {
nodeId: nodeId,
planPatch: { ...otherValues },
},
};
commitMutation(
environment,
{
mutation,
variables,
onCompleted: (response, errors) => alert(response),
onError: err => alert(err),
}
);
}

同样,数据已正确保存到数据库中,但是显示数据的其他 DOM 元素未呈现以反射(reflect)更改。我想简单的更新 Relay 处理这个?无论如何,根据他们的文档,情况应该如此。我试着搞乱 updater 回调,最终让页面更新,但它看起来很笨重。感谢任何建议,谢谢!

最佳答案

不确定您得到的是什么字段,但我猜您不会从突变中得到 id。您总是需要询问节点的 ID,以便中继可以匹配商店中更新的节点。并且节点的 id 必须命名为 id(不是 nodeId)

mutation EditPlanDialogMutation($input: UpdatePlanInput!) {
updatePlan(input: $input) {
plan {
id
...fields
}
}
}

关于javascript - 用户界面不反射(reflect)突变后的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49803653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com