我在與Rails的書務實敏捷Web開發。這是我的控制器:語法錯誤,意想不到的tIDENTIFIER,期待
class StoreController < ApplicationController
def index
@handy_men = HandyMan.order(:firstname)
end
end
我這個錯誤掙扎:
store_controller.rb:3: Syntax error, unexpected tIDENTIFIER, expecting keyword_end
你能幫我找出問題是什麼?
在於,在完整'store_controller.rb'文件?第三行是「@ handy_men ...」嗎?因爲如果這樣的話應該沒有任何問題地執行;您發佈的代碼中沒有錯誤。 – Amadan
是的,這是所有的,正如你所說,它不應該是一個錯誤,我完全按照書的說法,並且我得到了這個。 –
剪切和粘貼store_controller,整個文件不僅僅是提取物,錯誤可能是從別的地方 – neo