首页 > 代码库 > ember

ember

angular和ember是mvc框架;grunt负责版本管理、版本发布;nodejs服务器

http://www.emberjs.cn/guides/getting-started/using-fixtures/  使用静态数据

app.js中加入:

window.Todos = Ember.Application.create();Todos.ApplicationAdapter = DS.FixtureAdapter.extend();

 

适配器主要负责与应用的一个数据源进行通信。通常可能会是一个Web服务器接口,但是在此使用了一个加载夹具数据的适配器: