前提・実現したいこと
ここに質問の内容を詳しく書いてください。
フロントエンドの勉強をしているのですが、apiからjson形式で送られてくるデータをhtmlとして表示したいのですが、、、どうすれば良いでしょうか
###調べたこと
jsonからhtmlへの変換について調べましたが難しくてわかりませんでした、、
該当のソースコード
php
1<!DOCTYPE html> 2<html> 3<body> 4<div class="container"> 5 <img src="<!--ここに取得したURLを置きたい-->"> 6</div> 7</body> 8</html>
javascript
1function init() { 2 api( 3 function(response) { 4 //ここになんと記入すれば良いかがわからないです 5 } 6 ); 7}
json
1{ 2 "data": [ 3 { 4 "media_url": "test.com/1", 5 "id": "test1" 6 }, 7 { 8 "media_url": "test.com/2", 9 "id": "test2" 10 }, 11 { 12 "media_url": "test.com/3", 13 "id": "test3" 14 },これが後17個続く
回答1件
あなたの回答
tips
プレビュー