質問編集履歴
1
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,15 +24,15 @@
|
|
24
24
|
|
25
25
|
```javascript
|
26
26
|
|
27
|
-
class
|
27
|
+
class webreq = class {
|
28
28
|
|
29
29
|
constructor( act, name, path) {
|
30
|
+
|
31
|
+
this.act = null;
|
30
32
|
|
31
33
|
this.url = null;
|
32
34
|
|
33
35
|
this.itemJson = null;
|
34
|
-
|
35
|
-
var listVideoData = null;
|
36
36
|
|
37
37
|
}
|
38
38
|
|
@@ -68,9 +68,9 @@
|
|
68
68
|
|
69
69
|
resText = matches[1];
|
70
70
|
|
71
|
-
|
72
71
|
|
72
|
+
|
73
|
-
|
73
|
+
// ↓ class変数の代入ではなさそう
|
74
74
|
|
75
75
|
this.itemJson = JSON.parse(resText);
|
76
76
|
|
@@ -78,13 +78,13 @@
|
|
78
78
|
|
79
79
|
|
80
80
|
|
81
|
-
|
81
|
+
// this.act だとエラーになるので var act で受け取り
|
82
82
|
|
83
|
-
if( act ){
|
83
|
+
if( act ){
|
84
84
|
|
85
|
-
|
85
|
+
// ↓ ここでエラーになります。
|
86
86
|
|
87
|
-
this.setListVideoData();
|
87
|
+
this.setListVideoData();
|
88
88
|
|
89
89
|
}
|
90
90
|
|