葡萄有沒有一種方法& Grape-Entity將數據自動序列化爲實體?好像所有的例子都使用PARAMS [:VAR(來源:https://github.com/intridea/grape)將有效載荷序列化到葡萄實體上post/put
desc "Create a status."
params do
requires :status, type: String, desc: "Your status."
end
post do
authenticate!
Status.create!({
user: current_user,
text: params[:status]
})
end
當發佈實體是更復雜的(可以說一個新的人(名字,姓氏,地址等),是否有一種能夠自動把它變成該API表示實體尋找某種用法是這樣的:???
post do
authenticate!
entity.first_name
entity.last_name
end
作爲一個推論,我如何才能使實體上的屬性允許的參數 – Prescott 2014-09-18 18:37:19