从ember数据json中删除模型名称

问题描述 投票:4回答:2

Ember数据将数据发送到嵌入了型号名称的服务器。

{
    "part" {
       "name" : "test1",
       "quantity" : 12
    }
}

我想从响应中删除“part”字段,所以它看起来像:

{
   "name" : "test1",
   "quantity" : 12
}

我需要这是通用的,所以它适用于我的商店中的任何模型。


好的,我找到了RESTAdapter中的部分。

  serializeIntoHash: function(data, type, record, options) {
    var root = underscore(decamelize(type.typeKey));
    data[root] = this.serialize(record, options);
  },

我试图删除根部分

serializeIntoHash: function(data, type, record, options) {
    data = this.serialize(record, options);
}

但它不起作用,它用{}响应

ember.js ember-data
2个回答
2
投票

https://github.com/san650/ember-cli-page-object/issues/153

Ember.merge已被弃用,请使用Ember.assign

App.ApplicationSerializer = DS.RESTSerializer.extend({
  serializeIntoHash: function(hash, type, record, options) {
    Ember.assign(hash, this.serialize(record, options));
  }
});

7
投票

好吧发现了:https://github.com/emberjs/data/issues/771

App.ApplicationSerializer = DS.RESTSerializer.extend({
  serializeIntoHash: function(hash, type, record, options) {
    Ember.merge(hash, this.serialize(record, options));
  }
});
© www.soinside.com 2019 - 2024. All rights reserved.