tonakashima2025 / backend-portfolio

0 stars 0 forks source link

カテゴリー名の更新をDBに反映させる #4

Open tonakashima2025 opened 3 years ago

tonakashima2025 commented 3 years ago

現在フロント(vue.js)上の更新のみ

tonakashima2025 commented 3 years ago
// API接続(カテゴリー名更新)
apiCategoryUpdate: function() {
    axios.put('/api/categories/' + this.category.id)
        .then((res) => {
            this.$router.push({name: 'kanban'}, () => {});
        });
}

上記putメソッドでもDBに反映されない。

tonakashima2025 commented 3 years ago

https://github.com/tonakashima2025/backend-portfolio/blob/9dc3be8ff2962627769aa03acfd2a545806af2be/laravel/resources/js/components/Kanban.vue#L221-L225 上記コード追加で更新反映。