【Vue3】實作新增或編輯資料
Vue3
發表於 2024-12-09
| 2 分鐘
| 243 個字
【Vue3】開始使用vue
Vue3
發表於 2024-12-08
| 2 分鐘
| 214 個字
【Vue3】在瀏覽器上運行ES模組
Vue3
發表於 2024-12-07
| 2 分鐘
| 302 個字
【Vue3】使用axios串接api
Vue3
發表於 2024-12-06
| 1 分鐘
| 48 個字
axios
使用前先在head引入
1
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//官方寫法
$.ajax({
url: 'https://randomuser.me/api/',
dataType: 'json',
success: function(data) {
console.log(data);
}
});
//用axios改寫
axios.get("https://randomuser.me/api/")
.then(res => {
console.log(res.data.results)
})
.catch(err => {
console.log(err.response)
})
|
.response是固定寫法
【Vue3】promise非同步觀念
Vue3
發表於 2024-12-05
| 1 分鐘
| 176 個字
【Vue3】物件傳參考特性
Vue3
發表於 2024-12-04
| 1 分鐘
| 182 個字
【Vue3】關注點分離實作
Vue3
發表於 2024-12-03
| 1 分鐘
| 92 個字
【Vue3】this的指向
Vue3
發表於 2024-12-02
| 2 分鐘
| 230 個字
【Vue3】JavaScript縮寫
Vue3
發表於 2024-12-01
| 2 分鐘
| 310 個字
【PHP】執行php專案
PHP
發表於 2024-07-01
| 1 分鐘
| 33 個字