이 jquery 코드는 span HTML 입력 요소 안에 json 데이터를 표시합니다. 하지만 영화 장르의 배열 객체를 표시하기 위해 for 루프를 구현하지 못했습니다.json api 배열 jquery를 통한 반복 루프
는 지금은 배열의 단지 0 인덱스입니다하지만 난 모두 표시 싶어 ..
$("#txt-movie-genres").val(json.genres[0].name)
$(document).ready(function() {
var url = 'http://api.themoviedb.org/3/',
mode = 'movie/',
movie_id,
key = '?api_key=e9dfeccf734a61b9a52d9d7660f0d0a1';
$('button').click(function() {
var input = $('#movie').val(),
movie_id = encodeURI(input);
$.ajax({
type: 'GET',
url: url + mode + movie_id + key,
async: false,
jsonpCallback: 'testing',
contentType: 'application/json',
dataType: 'jsonp',
success: function(json) {
// grab the span elements by ID and replace their text with the json text
// $("#movie-title").text(json.title);
$("#txt-movie-title").val(json.title)
$("#txt-movie-genres").val(json.genres[0].name)
console.dir(json);
},
error: function(e) {
console.log(e.message);
}
});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="movie" type="text" /><button>Search</button>
<h1>Movie info:</h1>
<p>Movie title: <span id="span-movie-title"></span> </p>
<div class="input-group">
<input id="txt-movie-title" name="title" type="text" />
<div class="input-group-addon">
Movie Name
</div>
</div>
<div class="input-group">
<input id="txt-movie-genres" name="genres" type="text" />
<div class="input-group-addon">
Movie Genre
</div>
</div>
당신이 배열 또는 표시 쉼표의 각 요소에 대해 새로운 입력을 만드시겠습니까 단일 입력으로 분리 된 이름? – Alexander
예! 그래서 "액션, 어드벤처, 공포"등등이 될 수 있습니다. –