3

将 gem "ember-rails" 用于现有的 rails 应用程序。我正在尝试使用 Ember 路由一个资源,许多人告诉我这段代码应该可以工作,但事实并非如此。

我想突破学习曲线并完成这项工作,但我需要一些帮助。

错误

Routing Error
No route matches [GET] "/newslinks"

代码

应用程序.js

//= require jquery
//= require jquery-ui
//= require jquery_ujs
//= require jquery-fileupload/basic
//= require jquery-fileupload/vendor/tmpl
//= require chosen-jquery
//= require bootstrap
//= require bootstrap-notify
//= require jquery.limit-1.2.source
//= require bootstrap-switch
//= require handlebars
//= require ember
//= require ember-data
//= require_self
//= require app

应用程序.js

    App = Ember.Application.create({
  LOG_TRANSITIONS: true,
  ready: function() {
    console.log('App ready');
  }
});

App.Router.map(function() {
    this.resource('newslinks', { path: '/' });
});

App.IndexRoute = Ember.Route.extend({
  redirect: function() {
    this.transitionTo('newslinks');
  }
});

App.NewslinksRoute = Ember.Route.extend({
  model: function() {
  return App.Newslink.find();
  }
});

DS.RESTAdapter.reopen({
  namespace: 'api/v1'
});

App.Store = DS.Store.extend({
  revision: 13
});

App.Newslink = DS.Model.extend({
  name: DS.attr('string')
});

路线.rb

namespace :api do
  namespace :v1 do
    resources :newslinks
  end
end

应用程序.handlebars

    <!DOCTYPE html>
<html>
<head>
<meta name="description" content="Ember - Latest" />
<meta charset=utf-8 />
<title>Ember Latest</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css" rel="stylesheet">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script>
  <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <script src="http://builds.emberjs.com/handlebars-1.0.0.js"></script>
  <script src="http://builds.emberjs.com/ember-latest.js"></script>
  <script src="http://builds.emberjs.com/ember-data-latest.js"></script>
</head>
<body>
  <script type="text/x-handlebars">
    <h2>Here I am</h2>
  </script>
</body>
</html>

结论

请告诉我您将如何建议仅设置一条路线:/newslinks 通过 Ember 并使用现有的 rails 路线进行渲染。

这与数据无关(只想使用 ember 渲染路线)。此外,这段代码在 jsbin 中工作,所以它也不是让 Ember 独立于 Rails 工作

我是否需要直接使用 rails 在 routes.rb 中渲染 Ember 路线?还是 Ember 路由位于 Rails 路由之上,并挑选它识别的路由?

4

1 回答 1

2

如果您将 ember 数据与 rest 适配器一起使用,则配置如下:

鉴于此 urlyour-host/api/v1/newslinks具有以下 json 结构:

{
  newslinks: [
    {id: 1, name: 'foo'},
    {id: 2, name: 'bar' }
  ]
}

您只需要映射新闻链接路由:

App.Router.map(function() {
    this.resource('newslinks', { path: '/' });
});

并将命名空间映射到DS.RestAdapter

DS.RESTAdapter.reopen({
  namespace: 'api/v1'
});

是一个使用休息适配器和模拟响应的现场演示。

默认情况下,rails 将在没有 json 根路径的情况下提供 json:

[
  {id: 1, name: 'foo'},
  {id: 2, name: 'bar' }
]

为了轻松完成这项工作,只需在 rails 控制器中添加:json到您的render方法,然后添加数据。因此 rails 将使用活动模型序列化程序,并且将存在根路径:

def index
  @users = User.all
  render json: @users
end

我希望它有所帮助。

于 2013-08-06T23:25:01.697 回答