获取belongsTo ID而不获取记录

时间:2013-12-09 19:39:09

标签: ember.js ember-data

我正在尝试获取belongsTo ID而不获取实际记录。我的JSON API返回belongsTo关系的ID。

我有以下型号

App.Recipe = DS.Model.extend(
  title: DS.attr()
  ingredients: DS.hasMany('ingredient', async: true)
)

App.Ingredient = DS.Model.extend(
  recipe: DS.belongsTo('recipe')
  product: DS.belongsTo('product', async: true)
)

App.Product = DS.Model.extend(
  title: DS.attr()
)

这是我的路线:

App.RecipeIndexRoute = Ember.Route.extend(
  model: (args) ->
    @store.find('recipe', args.recipe_id)
)

这是我的控制器:

我正在尝试在此控制器中找到产品ID。

App.RecipeIndexController = Ember.ObjectController.extend(
  hasRecipeInCart: null

  actions:
    toggleCart: ->
      @content.get('ingredients').then((ingredients) =>
        # how do I get product id here, without lookup up the product relation?
        # this 'get' makes Ember call: /api/v1/products/1
        # I simply want the product ID (in this case 1), without having to call the server again.
        ingredient.get('product').then((product) =>
          product.id # => 1
        )

我的JSON看起来像这样:

HTTP GET:/ api / v1 / recipes / 1

{
  "recipe": {
    "id":1,
    "title":"Recipe 1",
    "ingredients":[2,1]
  }
}

HTTP GET:/ api / v1 / ingredients?ids [] = 2& ids [] = 1

{
  "ingredients": [
    {
      "id":2,
      "recipe":1,
      "product":1
    },
    {
      "id":1,
      "recipe":1,
      "product":2
    }
  ]
}

3 个答案:

答案 0 :(得分:12)

现在,使用添加到ember数据的ds-reference功能可以更轻松。你现在可以这样做:

var authorId = post.belongsTo("author").id();

请参阅http://emberjs.com/blog/2016/05/03/ember-data-2-5-released.html#toc_code-ds-references-code

答案 1 :(得分:6)

大量工作正在重做关系,您可以从数据属性model.get('data.product.id')

中将其从基础属性中拉出来

示例:http://emberjs.jsbin.com/OxIDiVU/16/edit

答案 2 :(得分:5)

对于ED 2.x,关系已经过重新设计,并因获取基础数据而被破坏until the ds-references feature landed

要在ED 2.4+中执行此操作,您需要使用新的belongsTo方法来处理基础数据。

获取belongsTo ref的id:

var id = this.get('model').belongsTo('myBelongsToKey').value();
相关问题