0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【個人アプリ作成】情報管理アプリ制作16日目

Posted at

昨日は仕事に100%割いたので悔いなし。今日の実績。

#今日やったこと

・ 顧客データ登録画面の作成
・ 中間テーブルの保存の復習
・ JavaScriptで装飾(ボタンをクリックするとメニューが出る)

#中間テーブルの保存

createアクションに対して、{:users_id []}の記述で自動で連携・保存される(ストロングパラメーターは必須だけど)

アソシエーションを組んでいるためのなのか、保存される仕組みは完璧には分からないかったが、仕組みは理解。明日から実装していく。

#JavaScriptが全然うまくいかない

Id属性の情報は取れているのに、Chromeでデバックするとすぐリロードされて消える、、、、

function clickbutton(){
  const pushPlusButton = document.getElementById("index-plus")
  
  pushPlusButton.addEventListener('mouseover', function(){
    console.log("aaaa")
  })
}

window.addEventListener('load', clickbutton)

console.logの記述が一瞬だけ出てすぐ消える、、、
turbolinksの記述は消した方がいいはずなんだけど、ダメだったのか、、、

実装苦戦中です。。。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?