我想要一個軌道應用程序的前兩個用戶輸入的整型輸入填充第三個字段後,他們執行一些算術時提交按鈕是按下。我想第三個字段顯示前兩個字段的算術結果
我已經使用鐵軌腳手架。
我是否在我的控制器代碼中將我想要執行的所需算術函數放在我的變量中?
# POST /pls
# POST /pls.json
def create
@pl = Pl.new(pl_params)
respond_to do |format|
if @pl.save
format.html { redirect_to @pl, notice: 'Pl was successfully created.' }
format.json { render :show, status: :created, location: @pl }
else
format.html { render :new }
format.json { render json: @pl.errors, status: :unprocessable_entity }
end
end
末
謝謝你們。只是爲了在更好的背景下提出我的問題。在我的應用程序的「新建」視圖中,有三個字段:收入,成本和利潤。我想要在按'保存'時自動計算第三個字段,然後向用戶顯示新的視圖並顯示利潤。我在正確的軌道上嗎? – Stoob