0
ruby on 레일즈 응용 프로그램에서 index.html.erb 페이지에 각 영화의 제목, 이미지, 감독 등을 표시하는 루프가 있습니다. 내가하고 싶은 것은 영화의 imdb 등급도 있습니다. 내가 할 수있는 방법이 있니?Ruby on Rails 디스플레이 imdb 별 등급
index.html.erb :
<% @films.each do |film| %>
<% if film.release_date < Date.today %>
<div class='large_panel'>
<%= image_tag film.image_url,:size => "900x200" %>
<h1><%= film.title %></h1>
<div class="bbfc-icons">
<img src="/images/bbfc/15.png" alt="15" height="40" width="40">
</div>
<div class="clearfix">
</div>
<div>
<div class='film_info_two_column_left wider'>
<div class="allShowtimes large_txt">
Continues Friday 16th January - Thursday 5th February
</div>
</div>
<div class='film_info_two_column_right whatsonpgae'>
<div class="allShowtimes">
<%= link_to 'Show', film_path(film) %> <%= link_to 'Edit', edit_film_path(film) %>
</div>
</div>
<div class='clearfix'></div>
</div>
</div>
<% end %>
http://stackoverflow.com/questions/1966503/does-imdb-provide-an-api – Grych