範例 CRUD - I
axios
cmd
npm add axios
js
import axios from 'axios'
const url='localhost:5050'
axios.get(`http://${url}/item`).then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
axios 與 reactive
碰壁的區域,遇到將axios.get後的 res 資料送到 reactive 內時,出現問題,原來是reactive
特性。
js
import {reactive} from 'vue'
const get_data=reactive([])
const get_data=reactive({item:[]})
...
axios.get(...).then(res=>{
get_data=res.data
get_data.item=res.data
}).catch(..)