在Ember中保存相关记录

时间:2017-03-11 06:14:42

标签: javascript ruby-on-rails ember.js save has-many

我是Ember的初学者,并试图实现一个简单的帖子和评论应用程序。

我有一个rails背景,因此我使用Rails API。

我已经按照教程进行了操作,我可以保存帖子,获取所有评论并删除帖子。但是,我在保存与帖子相关的评论时遇到了问题。

以下是模型的代码

post.js

import DS from 'ember-data';

export default DS.Model.extend({
  title: DS.attr('string'),
  body: DS.attr('string'),
  comments: DS.hasMany('comment')
});

comment.js

import DS from 'ember-data';

export default DS.Model.extend({
  author: DS.attr('string'),
  body: DS.attr('string'),
  post: DS.belongsTo('post')
});

路由/后/评论/ new.js

import Ember from 'ember';

export default Ember.Route.extend({
  model() {
    return {};
  },
  renderTemplate() {
    this.render('post.comment.new', { into: 'application' });
  },
  actions: {
    save() {
      const post = this.modelFor('post');
      const newComment = this.get('store').createRecord('comment', this.currentModel);
      newComment.set('post', post);
      newComment.save().then(() => {
        this.transitionTo('post', post);
      });
    },
    cancel() {
      this.transitionTo('post', this.modelFor('post'));
    }
  }
});

router.js

import Ember from 'ember';
import config from './config/environment';

const Router = Ember.Router.extend({
  location: config.locationType,
  rootURL: config.rootURL
});

Router.map(function() {
  this.route('posts');
  this.route('post.new', { path: 'posts/new' });
  this.resource('post', { path: 'posts/:post_id' }, function() {
    this.route('comment.new', { path: 'comments/new' });
  });
});

export default Router;

保存评论是我遇到问题的地方。这真的很奇怪,但在保存注释时,传递给服务器的参数看起来像

Parameters: {"comment"=>{"author"=>"dsa", "body"=>"asd", "post"=>"9"}}
Unpermitted parameter: post

据我所知,参数应该是post_id而不是post。如果传递了post,那么它应该是对象。我当然可能是错的,因为我还没有对Ember有清楚的认识。

在随机摆弄代码时,我发现如果我在

中替换评论模型中的关系
post: DS.belongsTo('post')

post_id: DS.belongsTo('post')

传递给服务器的参数是

Parameters: {"comment"=>{"author"=>"fg", "body"=>"dfs", "post_id"=>nil}}

然而,这并没有将post_id实际传递为nil。

这可能是绝对错误的,而不是它应该如何运作,但我一无所知。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

创建评论序列化程序并覆盖keyForRelationship方法,如下所示:

 keyForRelationship(key/*, relationship, method*/) {
     if(key === 'post') return 'post_id';
     return this._super(...arguments);
   }

和帖子关系应该是:

post: DS.belongsTo('post')