回答編集履歴
1
試したソース追記
test
CHANGED
@@ -1 +1,65 @@
|
|
1
1
|
`this.$axios.get('/パス/')`ってかいてて、`const res = await this.$axios.$post(`を使ってるのはなにか意図してますか?(ブラウザでアクセスは`get`です)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
npmでnuxt入れて
|
8
|
+
|
9
|
+
nuxt.config.js
|
10
|
+
|
11
|
+
```js
|
12
|
+
|
13
|
+
module.exports = {
|
14
|
+
|
15
|
+
modules: [
|
16
|
+
|
17
|
+
'@nuxtjs/axios',
|
18
|
+
|
19
|
+
],
|
20
|
+
|
21
|
+
axios: {
|
22
|
+
|
23
|
+
}
|
24
|
+
|
25
|
+
}
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
pages/index.vue
|
32
|
+
|
33
|
+
```vue
|
34
|
+
|
35
|
+
<template>
|
36
|
+
|
37
|
+
<h1>Hello world!</h1>
|
38
|
+
|
39
|
+
</template>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
|
43
|
+
export default {
|
44
|
+
|
45
|
+
async asyncData({ app }) {
|
46
|
+
|
47
|
+
const res = await app.$axios.$get(
|
48
|
+
|
49
|
+
'https://api-test.libexplorer.com/api?module=account&action=balance&address=a06c2e275db714d4a8d7b574ddf1d29acef2ddc8c26e7cbd3f2cb720779649d6/',
|
50
|
+
|
51
|
+
)
|
52
|
+
|
53
|
+
console.log(res);
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
</script>
|
60
|
+
|
61
|
+
```
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
でとりあえずAPIにアクセスできました…どうも自分自身のページを見に行ってる気がする
|