vue
1//mian.js 2import Vue from ‘vue’ 3import App from ‘./App.vue’ 4import router from ‘./router’ 5import store from ‘./store’ 6import vuetify from ‘./plugins/vuetify’; 7import axios from ‘axios’ 8Vue.config.productionTip = false 9Vue.prototype.$axios = axios 10new Vue({ 11 router, 12 store, 13 vuetify, 14 render: h => h(App) 15}).$mount(‘#app’)
vue
1methods: { 2 submit: function(){ 3 this.$axios.post(‘192.168.100.102:8080/test’, { 4 // user_name: this.user_name, 5 // user_email: this.email, 6 // user_password: this.passwd1 7 }) 8 .then(function (response) { 9 console.log(response); 10 }) 11 .catch(function (error) { 12 console.log(error); 13 }); 14 } 15}
↑のコードでアクセスするとエラーになります…
localhost:8080/が自動で追加されてURLがおかしなことになってしまうんですがこれの回避方法を教えて下さい。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。