前提・実現したいこと
プログラミング初心者です。
laravelとvue.jsを使用したSPAのタスク管理アプリを作成しています。
新規作成画面、削除画面は実装できており、編集画面の実装に取り組んでいます。
タスク(board)のtitleをフォームで編集し、データを更新したいです。
【流れ】
➀APIから該当タスク(board)のデータを受け取り、boardにres.data代入する
➁board.titleをフォームで編集する
➂boardオブジェクトをまるごとAPIに渡し、updateする
発生している問題・エラーメッセージ
初期値を入れたフォームに変更を加え、送信ボタンを押すと、
変更前の値がAPIに渡されてしまいます。
該当のソースコード
vue
1<template> 2 <v-dialog v-model="dialog" @click:outside="clearForm" max-width="500"> 3 <template v-slot:activator="{ on, attrs }"> 4 <v-btn fab small color="white" elevation="0" v-bind="attrs" v-on="on" @click="getBoard"> 5 <v-icon color="blue-grey">far fa-edit</v-icon> 6 </v-btn> 7 </template> 8 <v-card> 9 <v-card-title> 10 <span class="headline">Edit Board Title</span> 11 </v-card-title> 12 <v-card-text> 13 <v-container> 14 <v-form ref="form" v-on:submit.prevent="submit"> 15 <div class="errors" v-if="errors"> 16 <ul v-if="errors.title"> 17 <li v-for="msg in errors.title" :key="msg">{{ msg }}</li> 18 </ul> 19 </div> 20 <v-row> 21 <v-col cols="12"> 22 <div class="form-group"> 23 <v-text-field v-model="board.title" label="Board Title" counter maxlength="45" id="board-title" 24 :rules="[required, length]" filled rounded dense></v-text-field> 25 </div> 26 <div class="d-flex justify-center"> 27 <v-btn type="submit">Submit</v-btn> 28 </div> 29 </v-col> 30 </v-row> 31 </v-form> 32 </v-container> 33 </v-card-text> 34 </v-card> 35 </v-dialog> 36</template> 37 38<script> 39import { CREATED, UNPROCESSABLE_ENTITY } from '../../util'; 40 41export default { 42 props: { 43 boardId: Number 44 }, 45 data () { 46 return { 47 board: {}, 48 oldTitle: '', 49 dialog: false, 50 errors: null, 51 required: value => !!value || 'Required.', 52 length: value => (value && value.length <= 45) || 'Max 45 characters.', 53 } 54 }, 55 methods: { 56 getBoard() { 57 axios.get('/api/boards/' + this.boardId) 58 .then((res) => { 59 this.board = res.data; 60 this.oldTitle = res.data.title; 61 }); 62 }, 63 clearForm() { 64 if (this.board.title != this.oldTitle) { 65 this.$refs.form.reset(); 66 this.board.title = this.oldTitle; 67 } 68 this.errors = null; 69 }, 70 async submit() { 71 const res = await axios.put('/api/boards/' + this.boardId, this.board); 72 73 if (res.status === UNPROCESSABLE_ENTITY) { 74 this.errors = res.data.errors; 75 return false; 76 } 77 78 if (res.status !== CREATED) { 79 this.$store.commit('error/setCode', res.status); 80 return false; 81 } 82 83 this.$emit("EditBoard", { res: res.data }); 84 this.clearForm(); 85 this.dialog = false; 86 } 87 } 88} 89</script> 90 91<style scoped> 92</style> 93
試したこと(確認できたこと)
・vueのdevツール上では、dataのboard.titleの変更が反映されている
・submit()すぐ下でconsole.log(this.board)を実行し、title箇所を確認すると変更前の値が入っている
・submit()すぐ下でconsole.log(this.board.title)を実行し、確認すると変更後の値が入っている
【例:title1からtitle111に変更した場合】 console.log(this.board) →{ "id": 1, "title": "title1", "created_user_id": 1, "updated_user_id": 1, "deleted_user_id": null, "created_at": "2021-03-10 17:05:33", "updated_at": "2021-03-10 19:28:16", "deleted_at": null, "users": [ { "id": 1, "name": "user_name_1", "email": "email1@gmail.com", "email_verified_at": null, "created_at": "2021-03-10 17:05:33", "updated_at": "2021-03-10 19:37:20", "deleted_at": null, "pivot": { "board_id": 1, "user_id": 1, "created_at": null, "updated_at": null } } ] } console.log(this.board.title) →title111
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。