第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

無法使用 vue.js 發(fā)布

無法使用 vue.js 發(fā)布

慕姐4208626 2023-02-17 17:21:17
我想使用“vue-resource”發(fā)布表單數據,但出現錯誤。我用 vue-cli 和 vuetify 編寫了代碼。錯誤[Vue 警告]:v-on 處理程序中的錯誤:“TypeError:this.$http.post(...).error 不是函數”應用程序.vue<template>  <v-app>    <v-main>      <v-container class="px-0">        <v-form ref="form" @submit="addEvent">            <p class="text-uppercase">Question?</p>              <v-radio-group v-model="newEvent.select1" row>                <v-radio label="aaa" value="aaa"></v-radio>                <v-radio label="bbb" value="bbb"></v-radio>              </v-radio-group>            <input type="submit" depressed color="primary" value="OK!">        </v-form>      </v-container>    </v-main>  </v-app></template><script>export default {  name: 'App',  data () {    return {      users: [],      newEvent: {        select1: '',      }    }  },  methods: {    addEvent: function (e) {    e.preventDefault()        if (this.isValid) {          console.log("success")          console.log("select1: " + this.newEvent.select1)          this.$http.post('URL..', this.newEvent, function (data, status, request) {            console.log("post success")            console.log(status)            }).error(function (data, status, request) {              console.log("post failed")            })        }else{          console.log("need edit")        }      },  },    computed: {      isValid: function () {        var valid = true        for (var key in this.data) {          if (!this.data[key]) {            valid = false          }        }        return valid      }    },};</script> 我嘗試在 main.js 中寫“import VueResource from 'vue-resource'”,但是沒有效果。我該如何解決?
查看完整描述

1 回答

?
哈士奇WWW

TA貢獻1799條經驗 獲得超6個贊

嘗試使用axios或fetch


// install axios first


import axios from 'axios'


// ... some code here


axios.post(url, data).then(response => {}).catch(error => {})



// or you can use fetch


let response = await fetch(url, { method:'POST', headers: {'Content-Type': 'application/json;charset=utf-8'}, body: JSON.stringify(data) })


// getting result

let json = await response.json()


查看完整回答
反對 回復 2023-02-17
  • 1 回答
  • 0 關注
  • 95 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號