Rails 5.2和fast_jsonapi 1.5,Ember 3.4
我在Ember中创建了一个新的Tag记录:
let newTag = this.get('store').createRecord('tag', {
name: this.get('name')
});
newTag.save();
这会发送以下json(在Chrome的“网络”标签中显示为“请求有效载荷”)
{"data":{"attributes":{"name":"photos","created_at":null,"updated_at":null},"type":"tags"}}
但是Rails只能获取(通过在TagsController的create方法中打印出参数来验证):
{"controller"=>"tags", "action"=>"create"}
它会引发以下错误:
ActionController::ParameterMissing (param is missing or the value is empty: tag)
这是我的控制器代码:
# app/controllers/tags_controller.rb
class TagsController < ApplicationController
def create
tag = Tag.create!(tag_params)
render json: {status: "success"}
end
private
def tag_params
puts params
params.require(:tag).permit(:name)
end
end
让炭烬和铁轨互相了解的诀窍是什么?由于ember在有效载荷中发送“类型”,我可以让Rails理解这是模型,从而满足我对参数中存在“标签”的要求吗?
答案 0 :(得分:0)
重新读取action controller overview后,我得知必须在请求中包含'Content-Type': 'application/json'
标头。我是通过customizing my application adapter在Ember中完成的:
// app/adapters/application.js
import DS from 'ember-data';
export default DS.JSONAPIAdapter.extend({
init() {
this._super(...arguments);
this.set('headers', {
'Content-Type': 'application/json'
});
}
});
我要处理的下一个问题是更改在Rails控制器中对强参数的使用:
# app/controllers/tags_controller.rb
def tag_params
params.require(:data).require(:attributes).permit(:name)
end
希望这对其他人有帮助。
答案 1 :(得分:0)
在 ember 3.26 你可以这样做:
export default class ApplicationAdapter extends JSONAPIAdapter {
headers = {
'Content-Type': 'application/json'
}
代替
export default DS.JSONAPIAdapter.extend({
init() {
this._super(...arguments);
this.set('headers', {
'Content-Type': 'application/json'
});