ember.js – 使用EmberData手动加载模型

栏目: 编程语言 · 发布时间: 6年前

内容简介:翻译自:https://stackoverflow.com/questions/15907029/load-a-model-manually-with-emberdata
我有一个带有登录表单的Ember应用程序,它在成功登录后以 JSON

格式返回当前用户.

使用createRecord直接在模型上设置返回的JSON属性.例如,is_private变为user.is_private,而不是user.get(‘isPrivate’)?

如何加载用户模型以便正确设置属性并且我不必使用id重新获取它?

据说,官方的方法是使用adapter.load,如 described in this thread

Loading Data

Previously, some features of the store, such as load() , assumed a

single adapter.

If you want to load data from your backend without the application

asking for it (for example, through a WebSockets stream), use this

API:

store.adapterForType(App.Person).load(store, App.Person, payload);

This API will also handle sideloaded and embedded data. We plan to add

a more convenient version of this API in the future.

但不幸的是,尽管文档声称,它并不处理侧载数据.我个人使用类似下面的内容,它基于如何实现find(ID):

var id = json["person"]["id"];
var store = DS.get("defaultStore");
var adapter = store.adapterForType(App.Person);
adapter.didFindRecord(store, App.Person, json, id);
var person = App.Person.find(id);

请注意,此代码假定JSON的格式与find(ID)期望从服务器接收的格式相同,如 documented in the RESTAdapter guide

{
  person: {
    id: 1,
    is_private: false,
    projects: [3]
  },
  projects: [
    { id: 3, name: "FooReader" }
  ]
}

这将应用您使用keyForAttributeName配置的任何转换(例如将is_private映射到isPrivate),它将处理侧载记录.我不确定这是不是最好的做法,但效果很好.

翻译自:https://stackoverflow.com/questions/15907029/load-a-model-manually-with-emberdata


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

传统企业,互联网在踢门

传统企业,互联网在踢门

刘润 / 中国华侨出版社 / 2014-7 / 42

1、第一本传统企业互联网化的战略指导书,首次提出“互联网加减法”,迄今最清晰的转型公式 鉴于目前很多传统企业“老办法不管用,新办法不会用”的现状,本书将用“互联网的加减法” 这个简单模型清晰地说明商业新时代的游戏规则和全新玩法,帮助传统企业化解“本领恐慌” 。 2、小米董事长&CEO 金山软件董事长雷军,新东方教育科技集团董事长兼CEO俞敏洪,复旦大学管理学院院长陆雄文,复旦大学博士、......一起来看看 《传统企业,互联网在踢门》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具