POSO
@POSO

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

form with で時間のデータ送信をしたい

解決したいこと

疑問その1、ここに<%= form %>を記述しないとデータ送信できないのはわかります、現在時刻を送信する方法を教えてください
疑問その2、データベースに保存するレコードはnewでidが作られ、createでそのid内の情報に追加され(この場合はabotan、ボタンその1を押した時間ですね)updateでどんどんデータが追加、編集されます(bbotan、ボタンその2を押した時間など)
この際どのようなコードを書くべきでしょうか

該当するソースコード

htmlコード
<%= form_with url: '/abotans', method: :post, local: true do |form| %>
#疑問その1
<%= form.submit "ボタンそのいち" %>
<% end %>
routeコード
get 'timers/abotan' => 'timers#bbotan'
post 'abotans' => 'timers#create'
controllerコード
def new
@timer = Timer.new
end
def create
@timer = Timer.create(abotan: params[:abotan])
end
def update
@timer = Timer.find(params[:id])
end

自分で試したこと

データ送信ができれば解決します

0

No Answers yet.

Your answer might help someone💌