質問編集履歴

1

ソースに間違いがあったため修正

2020/05/11 17:38

投稿

southern_flavor
southern_flavor

スコア70

test CHANGED
File without changes
test CHANGED
@@ -142,7 +142,7 @@
142
142
 
143
143
  ```javascript
144
144
 
145
- const jpnPath = "json_url";
145
+ const jsonUrl = "json_url";
146
146
 
147
147
  function getData(jsonPath = '') {
148
148
 
@@ -184,8 +184,6 @@
184
184
 
185
185
  h += '<div><ul>';
186
186
 
187
- h += '<li>都道府県: ' + jsondata[i].detail[j].pref + 'は' + +'件です</li>';
188
-
189
187
  h += '<li>名物:' + jsondata[i].detail[j].shop_name + '</li>';
190
188
 
191
189
  h += '</ul>';
@@ -208,7 +206,7 @@
208
206
 
209
207
 
210
208
 
211
- getData(jpnPath).then( function(data) {
209
+ getData(jsonUrl).then( function(data) {
212
210
 
213
211
  shopLoop(data);
214
212