这是一个简化的例子。 请记住,实际模型是20个字段和一些计算属性。
'订单'模式
shippingFirstName: DS.attr('string'),
shippingLastName: DS.attr('string'),
模板(作为newOrder传入的模型)
<ul class="thing-list">
<li class="thing first-name">
<label class="field text" for="shippingFirstName">
<div class="label">
<span>First name</span>
</div>
{{input
id="shippingFirstName"
value=newOrder.shippingFirstName
placeholder="......."}}
</label>
</li>
...
发布数据
data: {
attributes: {
shipping-first-name: 'sheriff',
shipping-last-name: 'derek',
},
type: 'orders',
}
期望的结果
{
shipping_to: {
first_name: 'sheriff',
last_name: 'derek',
},
}
'order'的序列化器(我期望工作......)
import DS from 'ember-data';
export default DS.JSONAPISerializer.extend({
serialize(snapshot, options) {
let json = this._super(...arguments);
json = json.data.attributes;
console.log(json); // shows attributes as shipping-first-name
json.shipping_to = {
first_name: json.shippingFirstName,
last_name: json.shippingLastName,
};
delete json.shippingFirstName;
delete json.shippingLastName;
return json;
},
});
但shipping_to属性未显示在帖子中,其他值以dash-case(JSON:API样式)
文档很棒:https://guides.emberjs.com/v2.18.0/models/customizing-serializers但示例不是虚线键。
当我愚弄attrs hash时,我可以让事情发挥作用 - 但它似乎非常随意和/或我不明白发生了什么。
import DS from 'ember-data';
export default DS.JSONAPISerializer.extend({
serialize(snapshot, options) {
let json = this._super(...arguments);
json = json.data.attributes;
console.log(json);
json.shipping_to = {
first_name: json.whatever_thing_not_dashed,
last_name: json.whateverThingCamel,
};
delete json.whatever_thing_not_dashed;
delete json.whateverThingCamel;
return json;
},
attrs: {
shippingFirstName: 'whatever_thing_not_dashed',
shippingLastName: 'whateverThingCamel',
},
});
我错过了什么? (后端的名称不够整齐,只能将骆驼变为全面的下划线 - 而且它们的嵌套方式不同)
答案 0 :(得分:1)
首先,因为你的后端不期望JSONAPI对象你应该使用另一个串行器,如JSONSerializer
https://guides.emberjs.com/v2.18.0/models/customizing-serializers/#toc_jsonserializer
这将删除键“data”和“type”,然后您可以使用相同的钩子来使用Ember.String.underscore转换蛇盒中的attrs并添加您想要的键
http://www.emberjs.com.cn/api/classes/Ember.String.html#method_underscore
您还应该为您的模型创建特定的序列化程序
ember g serializer <name of your model>
这样您只能更改所需的特定模型而不是整个应用程序