我在我的应用程序中使用 FullCalendar 并为约会提供一个 JSON 文件。
我最近介绍了一些条件,但这是我在尝试加载约会.json 页面时遇到的错误
index.json.jbuilder:15: syntax error, unexpected keyword_end, expecting end-of-input
这是我用 jbuider 生成 json 文件的代码
json.array! @appointments do |a|
json.ignore_nill!
json.extract! a, :id, :description, :patient_id
if a.patient.blank? && a.description.blank?
json.title "Appuntamento"
end
if a.patient.blank? && a.description.present?
json.title a.description
end
if a.patient.present? && a.description.present?
json.title a.patient.fullname_lastnameFirst + "\n" + a.description.capitalize
end
if a.seat.blank?
json.color "rgb(122, 122, 122)"
else
json.color a.seat.color
end
json.start a.starting_time
json.end a.ending_time
json.url appointment_url(a)
end
任何想法可能是缺少输入端的问题?已经感谢您的帮助