Rails+Vueで、axiosコール時の「Can't verify CSRF token authenticity.」の対処法 2018-07-30 Rails, Ruby, Vue VueからaxiosでRailsのAPIを叩いた場合に、サーバ側で 1Can't verify CSRF token authenticity. と出る場合の対処法。 123456import Vue from 'vue/dist/vue.esm';import axios from 'axios';// ↓この2行を追記const token = document.getElementsByName("csrf-token")[0].getAttribute("content");axios.defaults.headers.common["X-CSRF-Token"] = token;