質問編集履歴
2
ソース修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -136,7 +136,7 @@
|
|
136
136
|
|
137
137
|
message += `インポート失敗:ユーザー` + `\n`
|
138
138
|
|
139
|
-
for (const error of res.data.
|
139
|
+
for (const error of res.data.users.errors){
|
140
140
|
|
141
141
|
message += error.line + `行目:` + error.message + `\n`;
|
142
142
|
|
@@ -150,7 +150,7 @@
|
|
150
150
|
|
151
151
|
message += `インポート失敗:ユーザーグループ` + `\n`
|
152
152
|
|
153
|
-
for (const error of res.data.
|
153
|
+
for (const error of res.data.userGroups.errors){
|
154
154
|
|
155
155
|
message += error.line + `行目:` + error.message + `\n`;
|
156
156
|
|
1
タイトル修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
フロントjavascriptでAPIからのresponseのJSONをうまく
|
1
|
+
フロントjavascriptでAPIからのresponseのJSONをうまく取得したい
|
test
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
{
|
38
38
|
|
39
|
-
"line
|
39
|
+
"line": 2,
|
40
40
|
|
41
41
|
"column": "prefix",
|
42
42
|
|
@@ -46,13 +46,13 @@
|
|
46
46
|
|
47
47
|
{
|
48
48
|
|
49
|
-
"line
|
49
|
+
"line": 2,
|
50
50
|
|
51
51
|
"column": "description",
|
52
52
|
|
53
53
|
"message": "説明は必須入力です"
|
54
54
|
|
55
|
-
}
|
55
|
+
}
|
56
56
|
|
57
57
|
]
|
58
58
|
|