在我的ruby on rails程序中,我使用了attr_accessor。但是,虽然渲染json它不会出现在视图中。 我的代码如下
@users.each do |user|
user.entry_id= "QWER1234"
user.save
end
respond_to do |format|
format.html
format.json { render json: {logs: @users, iTotalRecords: @users.total_entries, iTotalDisplayRecords: @users.total_entries} }
end
如果我查看我的attr_accessor entry_is不可用。请帮我解决这个问题。