我使用active_model_serializers
宝石来控制序列化数据,并看到一些奇怪的行为。 我的代码如下所示:
模型和串
class User
include Mongoid::Document
field :first_name, :type => String
field :last_name, :type => String
def full_name
first_name + " " + last_name
end
end
class UserSerializer < ActiveModel::Serializer
attributes :id, :first_name, :last_name, :full_name
end
调节器
class UsersController < ApplicationController
respond_to :json, :html
def index
@users = User.all
respond_with @users
end
end
视图(app /视图/用户/ index.html.erb)
...
<script type="text/javascript">
$(function(){
// using a backbone collection to manage data
App.users = new App.Collections.Users(<%= @users.to_json.html_sage %>);
});
</script>
现在,当我渲染视图,我看到full_name
属性(通过在模型方法生成)从我的数据丢失:
{
"id": 2,
"first_name": "John",
"last_name": "Doe"
}
当我访问/users.json
(我有resources :users
在我routes.rb
文件),我看到正确的JSON:
{
"id": 2,
"first_name": "John",
"last_name": "Doe",
"full_name": "Jonn Doe"
}
我看不出什么,我可能是做错了 - 任何输入会有所帮助。 谢谢。