前提・実現したいこと
Vue.jsとFirebaseを使って、表計算をするアプリを制作中です。
「+」と「ー」のボタンでカウンターの数値が増減し、その合計などを計算します。
またFirebaseで、ログイン機能を実装しています。
このアプリに、各カウンターの数値を保存する機能を実装したいです。
ただし現状は、複数ボタンのどこのボタンが押されたのかを特定できず、どのボタンを押しても同じキーにデータが保存されてしまいます。
発生している問題・エラーメッセージ
複数の<button>要素をVue.jsのコンポーネントでテンプレ化して、HTMLに表示させています。
下記のコードではどこのボタンを押しても、Firebaseのhitというキーの数値が増減してしまいます。
該当のソースコード
HTML
1<table class="table table-bordered table-striped mt-3"> 2 <thead class="thead-light"> 3 <tr> 4 <th class="col-sm gameCount"><span>第 </span>{{ gameCount }}<span> 試合</span></th> 5 <th class="col-lg">ゲート1</th> 6 <th class="col-lg">ゲート2</th> 7 <th class="col-lg">ゲート3</th> 8 <th class="col-lg">ゲート4</th> 9 <th class="col-lg">ゴール</th> 10 <th class="col-md">総打数</th> 11 <th class="col-md">加算点</th> 12 <th class="col-md">Total</th> 13 </tr> 14 </thead> 15 <tbody> 16 <tr 17 v-for="(row, index) in rows" 18 :key="index" 19 > 20 <th class="col-sm">{{ row.number }}<br>{{ row.name }}<br>さん</th> 21 <td> 22 <counter-hit v-model="row.scores.gate1.count"></counter-hit> 23 <hoop-in v-model="row.scores.gate1.in"></hoop-in> 24 </td> 25 <td> 26 <counter-hit v-model="row.scores.gate2.count"></counter-hit> 27 <hoop-in v-model="row.scores.gate2.in"></hoop-in> 28 </td> 29 <td> 30 <counter-hit v-model="row.scores.gate3.count"></counter-hit> 31 <hoop-in v-model="row.scores.gate3.in"></hoop-in> 32 </td> 33 <td> 34 <counter-hit v-model="row.scores.gate4.count"></counter-hit> 35 <hoop-in v-model="row.scores.gate4.in"></hoop-in> 36 </td> 37 <td> 38 <counter-hit v-model="row.scores.goal.count"></counter-hit> 39 <hoop-in v-model="row.scores.goal.in">ネットイン</hoop-in> 40 </td> 41 <td> 42 <div class="sum">{{ sum(index) }}</div> 43 </td> 44 <td> 45 <div class="addition">{{ addition(index) }}</div> 46 </td> 47 <td> 48 <div class="total">{{ sum(index) + addition(index) }}</div> 49 </td> 50 </tr> 51 </tbody> 52</table>
JavaScript
1const counterHit = { 2 props: ['value'], 3 methods: { 4 countUp() { 5 this.$emit('input', this.value + 1); 6 firebase 7 .database() 8 .ref('hit') 9 .set(this.value + 1); 10 }, 11 countDown() { 12 if ( this.value > 0 ) { 13 this.$emit('input', this.value - 1); 14 firebase 15 .database() 16 .ref('hit') 17 .set(this.value - 1); 18 } 19 }, 20 }, 21 template: ` 22 <form> 23 打数 24 <div class="form-group input-group"> 25 <div class="input-group-prepend"> 26 <button 27 type="button" 28 @click="countUp" 29 class="btn btn-primary btn-up" 30 >+</button> 31 </div> 32 <input 33 type="number" 34 :value="value" 35 min="0" 36 disabled 37 class="form-control" 38 > 39 <div class="input-group-append"> 40 <button 41 type="button" 42 @click="countDown" 43 class="btn btn-secondary btn-down" 44 >-</button> 45 </div> 46 </div> 47 </form> 48 `, 49};
試したこと
<button>の@clickに、Firebaseへのデータ保存のコードを書きました。
ただしref('hit')としているので、どのボタンを押してもhitというキーにデータが保存されます。
自分でも、「そうなるよなあ」と思います。
押されたボタンがどこかを特定して、それを元に各ボタンごとにキーを割り当てなければダメだと思います。
しかし、その方法が分からず悩んでいます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/28 08:55
2020/11/28 09:31
2020/12/01 02:03