0

我一直在研究卡路里计数器,并且我的 MQL 写作正在慢慢取得进展。我目前遇到的问题是更新/common/topic/description属性中的配方本身。

我目前使用的查询是:

[{
  id: recipeId, // previously retrieved
  '/common/topic/description': {
    connect: 'replace',
    value: $('#description textarea').val(),
    lang: '/lang/en'
  }
}]

这成功执行,但是当我在运行后查询another)时出现错误:

{
  "domain": "global",
  "reason": "invalid",
  "message": "Unique query may have at most one result. Got 2",
  "locationType": "other",
  "location": "/common/topic/description"
}

根据文档connect: replace更新唯一属性并插入非唯一属性。那么我得到那个是因为插入了一个值吗?

是否有必要删除其他值以防止错误?我是否需要知道现有值才能将其删除?

{
  id: recipeId,
  '/common/topic/description': {
    connect: 'delete',
    value: 'Value currently stored',
    lang: '/lang/en'
  }
}
4

1 回答 1

1

该问题与更新非唯一属性无关。您的阅读查询是问题所在。您没有引用失败的查询,但错误消息的一部分"location": "/common/topic/description"是您的提示。该主题有两个描述,一个是空的,一个不是,但是您没有在查询中使用数组表示法。

这将起作用:

[{
  "id": "/m/0wh83sg",
  "/food/recipe/ingredients": [{
    "id": null,
    "ingredient": {
      "id": null,
      "name": null,
      "/food/food/energy": null,
      "/common/topic/image": {
        "id": null,
        "optional": true,
        "limit": 1
      },
      "optional": true
    },
    "unit": {
      "id": null,
      "name": null,
      "optional": true
    },
    "quantity": null,
    "notes": null
  }],
  "/common/topic/description": [{}]
}]
于 2013-09-03T01:56:29.397 回答