# undefined method `content' for #<User:0x00000103b48238>
respond_to do |format|
if @user.save #the error is supposed to be here.
format.html { redirect_to @user, notice: 'User was successfully created.' }
format.json { render action: 'show', status: :created, location: @user }
else
我正在迈克尔哈特尔的轨道教程。昨天我试图在第2章制作脚手架应用程序,我开始遇到很多错误。
所以我不得不将这段代码放在micropost.rb
上class Micropost < ActiveRecord::Base
validates :content, lenght: { maximum: 140 }
end
这是我的代码
class Micropost < ActiveRecord::Base
validates :content, lenght: { maximum: 140 }
end
为什么我收到错误?为什么一点重要?
我得到了另一个错误,很多宝石都收到了很多错误(我没有触及1),我更新了宝石和vo,这是正常的吗?
答案 0 :(得分:1)
您有错字:lenght
应为length
。