1
我正在學習ES6語法,以及最新的Apollo庫。這個withData
代碼改編自Githunt-React Apollo演示。如何修改此ES6代碼以插入斷點?
const withData = graphql(GETIMS_QUERY, {
options: ({ params }) => ({
variables: {
"fromID": Meteor.userId(),
"toID": `${params.toID}`,
},
}),
});
params
似乎並不包含我所期望的。我想插入一個斷點來檢查params
的內容。但是如果我在options
旁邊添加一個斷點,我發現params
未定義。
我想我可能需要才能看到的params
內容添加以下代碼塊中的斷點:
const withData = graphql(GETIMS_QUERY, {
options: ({ params }) => ({
//IS THERE A WAY TO ADD A BREAKPOINT IN HERE SOMEHOW?
//MAYBE RETURN `VARIABLES` AS A FUNCTION RESULT?
variables: {
"fromID": Meteor.userId(),
"toID": `${params.toID}`,
},
}),
});
有沒有辦法做到這一點?
在此先感謝所有的任何信息。
嘗試添加斷點的下一行,而不是在'options'。 – Bergi