質問編集履歴

1

修正版

2021/05/24 09:18

投稿

widget11
widget11

スコア221

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,10 @@
1
1
  親コンポーネントでdata属性のプロパティに配列を代入。
2
2
 
3
3
  その後、props経由で子コンポーネントにその配列を渡しているのですが、developer toolでログを確認すると{__ob__: observer}という謎の値に変わっており、更にそのobserverに対してforeachなどしても、値を取り出せません。
4
+
5
+
6
+
7
+ #### 修正版
4
8
 
5
9
 
6
10
 
@@ -34,11 +38,15 @@
34
38
 
35
39
     beforeCreate: function() {
36
40
 
37
-      //..省略
41
+ axios
38
42
 
39
-     response.data.categories.forEach((value) => {
43
+ .get('http://localhost:3000//users/'+ id +'/edit.json')
40
44
 
45
+ .then((response) => {
46
+
47
+     response.data.categories.forEach((value) => {
48
+
41
-  this.categories.push({ id: value.id, name:value.name })
49
+   this.categories.push({ id: value.id, name:value.name })
42
50
 
43
51
    }
44
52