문제

i'm trying to_json in the following way

 @own_events.as_json(:include => {:created_date => {},:attendees => {}, :user => {}, :start_times => {}, :end_times =>{}} )

and created_date is a method like that

def created_date
  self.created_at.strftime('%d/%m/%Y %H:%M:%S')
end

cause i need the created_at without the TZD .. but there is an error

NoMethodError (undefined method `serializable_hash' for "14/04/2014 16:04:07":String):

도움이 되었습니까?

해결책

:include is used to include associations in the json, usually has_many or belongs_to associations.

To include methods like created_date, use methods:

Such as:

@own_events.as_json(include: [:attendees, :user, :start_times, :end_times], methods: :created_date )
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top