本文介绍了我在哪里指定 Ember Data 中模型的复数形式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个以 -y 结尾的模型类型:安全

我如何告诉 Ember Data 使用/securities 而不是/securitys 来查找资源?

解决方案

在 Ember 数据源中挖掘之后,您需要做的是为您创建的 DS.RESTAdapter 添加一个哈希,ala:

App.store = DS.Store.create({适配器:DS.RESTAdapter.create({ bulkCommit: false,复数形式:{"security": "security"} }),修订:4});

I have a model type that ends in -y: Security

How do I tell Ember Data to use /securities instead of /securitys to find resources for this?

解决方案

After digging around in the Ember Data sources, what you need to do is add a hash to your create of DS.RESTAdapter, ala:

App.store = DS.Store.create({
  adapter: DS.RESTAdapter.create({ bulkCommit: false,
                                   plurals: {"security": "securities"} }),
  revision: 4
});

这篇关于我在哪里指定 Ember Data 中模型的复数形式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 04:17