質問編集履歴
1
何をしたいのかを書き加えました。拙い文章ですが読んでいただけると嬉しいです。
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,9 +10,89 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
#実現したいこと
|
14
14
|
|
15
15
|
|
16
|
+
|
17
|
+
データベースはDynamoDBを使用しています。
|
18
|
+
|
19
|
+
投稿内容をDynamoDBに登録そして、データベースから取得したいです。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
```javascript
|
24
|
+
|
25
|
+
signUp(){
|
26
|
+
|
27
|
+
this.$axios.$get('/signUp',
|
28
|
+
|
29
|
+
{
|
30
|
+
|
31
|
+
m_users: {
|
32
|
+
|
33
|
+
user_name: this.username,
|
34
|
+
|
35
|
+
mailaddress: this.mailaddress,
|
36
|
+
|
37
|
+
password: this.password
|
38
|
+
|
39
|
+
}
|
40
|
+
|
41
|
+
})
|
42
|
+
|
43
|
+
.then(res => {
|
44
|
+
|
45
|
+
console.log(res);
|
46
|
+
|
47
|
+
});
|
48
|
+
|
49
|
+
},
|
50
|
+
|
51
|
+
async getList() {
|
52
|
+
|
53
|
+
await this.$axios.$get('/api')
|
54
|
+
|
55
|
+
.then(res => {
|
56
|
+
|
57
|
+
console.log(res);
|
58
|
+
|
59
|
+
});
|
60
|
+
|
61
|
+
}
|
62
|
+
|
63
|
+
async addPost() {
|
64
|
+
|
65
|
+
await this.$axios.post('/post',
|
66
|
+
|
67
|
+
{
|
68
|
+
|
69
|
+
t_items: {
|
70
|
+
|
71
|
+
item_id: this.nextId,
|
72
|
+
|
73
|
+
shop_name: this.shop,
|
74
|
+
|
75
|
+
item_name: this.name,
|
76
|
+
|
77
|
+
item_price: this.price,
|
78
|
+
|
79
|
+
item_unit: this.unit,
|
80
|
+
|
81
|
+
post_date: date
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
)
|
88
|
+
|
89
|
+
.then(res => {
|
90
|
+
|
91
|
+
console.log(res);
|
92
|
+
|
93
|
+
})
|
94
|
+
|
95
|
+
```
|
16
96
|
|
17
97
|
|
18
98
|
|
@@ -68,4 +148,6 @@
|
|
68
148
|
|
69
149
|
|
70
150
|
|
71
|
-
これで合ってますか?
|
151
|
+
これで合っておりますか?
|
152
|
+
|
153
|
+
教えていただけると幸いです????♂️
|