質問編集履歴

2

jsonデータを追記

2017/07/26 07:59

投稿

helloman
helloman

スコア39

test CHANGED
File without changes
test CHANGED
@@ -36,6 +36,136 @@
36
36
 
37
37
 
38
38
 
39
+ ```json
40
+
41
+ [
42
+
43
+ {
44
+
45
+ "title": "\u30bf\u30a4\u30c8\u30eb0"
46
+
47
+ },
48
+
49
+ {
50
+
51
+ "title": "\u30bf\u30a4\u30c8\u30eb1"
52
+
53
+ },
54
+
55
+ {
56
+
57
+ "title": "\u30bf\u30a4\u30c8\u30eb2"
58
+
59
+ },
60
+
61
+ {
62
+
63
+ "title": "\u30bf\u30a4\u30c8\u30eb3"
64
+
65
+ },
66
+
67
+ {
68
+
69
+ "title": "\u30bf\u30a4\u30c8\u30eb4"
70
+
71
+ },
72
+
73
+ {
74
+
75
+ "title": "\u30bf\u30a4\u30c8\u30eb5"
76
+
77
+ },
78
+
79
+ {
80
+
81
+ "title": "\u30bf\u30a4\u30c8\u30eb6"
82
+
83
+ },
84
+
85
+ {
86
+
87
+ "title": "\u30bf\u30a4\u30c8\u30eb7"
88
+
89
+ },
90
+
91
+ {
92
+
93
+ "title": "\u30bf\u30a4\u30c8\u30eb8"
94
+
95
+ },
96
+
97
+ {
98
+
99
+ "title": "\u30bf\u30a4\u30c8\u30eb9"
100
+
101
+ },
102
+
103
+ {
104
+
105
+ "title": "\u30bf\u30a4\u30c8\u30eb10"
106
+
107
+ },
108
+
109
+ {
110
+
111
+ "title": "\u30bf\u30a4\u30c8\u30eb11"
112
+
113
+ },
114
+
115
+ {
116
+
117
+ "title": "\u30bf\u30a4\u30c8\u30eb12"
118
+
119
+ },
120
+
121
+ {
122
+
123
+ "title": "\u30bf\u30a4\u30c8\u30eb13"
124
+
125
+ },
126
+
127
+ {
128
+
129
+ "title": "\u30bf\u30a4\u30c8\u30eb14"
130
+
131
+ },
132
+
133
+ {
134
+
135
+ "title": "\u30bf\u30a4\u30c8\u30eb15"
136
+
137
+ },
138
+
139
+ {
140
+
141
+ "title": "\u30bf\u30a4\u30c8\u30eb16"
142
+
143
+ },
144
+
145
+ {
146
+
147
+ "title": "\u30bf\u30a4\u30c8\u30eb17"
148
+
149
+ },
150
+
151
+ {
152
+
153
+ "title": "\u30bf\u30a4\u30c8\u30eb18"
154
+
155
+ },
156
+
157
+ {
158
+
159
+ "title": "\u30bf\u30a4\u30c8\u30eb19"
160
+
161
+ }
162
+
163
+ ]
164
+
165
+ ```
166
+
167
+
168
+
39
169
  最終目標はjsonデータから一覧を作成し、
40
170
 
41
171
  [Masonry](https://masonry.desandro.com/)のプラグインを使ってinfinity scroll出来るまでが目標です。

1

誤字修正

2017/07/26 07:59

投稿

helloman
helloman

スコア39

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  for (var i = 0; i < data.length; i++) {
20
20
 
21
- output+= '<h3>'+data[i].post_title+'</h3>';
21
+ output+= '<h3>'+data[i].title+'</h3>';
22
22
 
23
23
  }
24
24