有没有办法将参数传递给 Item Web API,以便它维护它在 JSON 中返回的项目的结构?例如,我正在撤回问题和答案,但现在我无法知道哪些答案属于哪些问题,因为 JSON 是扁平的。如果 JSON 复制了我的 Sitecore 树的结构并将答案嵌套在问题下方,那就太好了。
当前结构(简化):
{
template: 'sitecore/question',
title: 'Question 1'
},
{
template: 'answer',
title: 'My first answer'
}
预期结构:
{
template: 'sitecore/question',
title: 'Question 1',
items:
{
template: 'answer',
title: 'My first answer'
}
}