我在Rails應用程序中使用RABL來通過REST訪問數據。除了if語句之外,它正在工作。Rails RABL if else語句
我得到這個錯誤:
undefined local variable or method `matitem_id'
這是我的show.json.rabl代碼:
object @expense
attributes :id, :unitcost, :quantity, :markup, :exp_date, :created_at, :description, :pcard, :invoice
child :employee do
attributes :id, :maxname
end
child :vendor do
attributes :id, :vendor_name
end
if matitem_id != nil
child :matitem do |matitem|
attributes :id, :itemnum
end
end
UPDATE1
我也試過
你是什麼意思,它不工作? –
對不起 - 我改變了問題,並添加了錯誤 – Reddirt