0
OMDB APIをムービーのリストに統合しようとしています。指定したディレクトリにあるすべてのムービーを含むCSVファイルを生成するシンプルなbashスクリプトがあります。 OMDB APIから映画情報を取得するための機能を追加するといいかもしれないと思っていました。 動画をクリックしてJSONデータを読み込もうとしています。問題は、映画データを適切な方法で表示する方法がわからないことです。 私はちょうどすべてのアドバイスのために、JSでコード化し始めています。ここでOMDB Api JSONデータをHTMLで表示
コード:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>List</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$(function() {
$('.link').click(function(){
var page=$(this).attr('rel')
$('#display').load(page);
console.log(page)
});
})
</script>
<div class="container">
<h1>List</h1>
<div id="display">
movie info
</div>
<br />
<hr />
<br />
<ul>
<?php
//Open the file.
$fileHandle = fopen("list.csv", "r");
//Loop through the CSV rows.
while (($row = fgetcsv($fileHandle, 0, ",")) !== FALSE) {
echo '<li class="link" rel="http://www.omdbapi.com/?t=' . $row[1] . '&y=' . $row[2] . '&plot=short&r=json">' . $row[0] . '</li><br />';
}
?>
</ul>
</div>
</body>
</html>
ようこそスタックオーバーフロー!あなたは[質問する]質問を読んで[mcve]を作成することができます。そうすれば、私たちがあなたを助けやすくなります。 – Katie