我正試圖建立一個遊戲,你猜數字。 問題是,如果你犯了一個錯誤,它會將你重定向到一個排行榜(mvc)表單,你在其中輸入你的名字加上它預先填充了來自不同控制器(遊戲)的會話數據並提交到數據庫中。 @round & @points是我想要訪問並存儲爲分數和級別的兩個變量。 class ApplicationController < ActionController::Base
before
按照慣例,下面應該定義爲我的模型或輔助方法的實例方法嗎? # app/models/user.rb
class User < ActiveRecord::Base
def full_name
"#{first_name} #{last_name}"
end
end
或 # app/helpers/users_helper.rb
module UsersHel