프로그래밍/Ruby & Rails
[Ruby & Rails] Post모델에 별점(Review) 기능 추가하기2
hyeoke
2018. 8. 10. 19:25
★ 파일과 image 추가
- jquery.raty.js 파일과 image 3가지 추가 (star-half.png / star-off.png / star-on.png )
-> mackenzie git 레파지토리 주소 => https://github.com/mackenziechild/movie_review
★ posts/show.html.erb 코드변경 및 추가
* 변경
<%= review.rating %>
↓↓↓
<div class="star-rating" data-score=<%= reivew.rating %>></div>
* js 코드추가
<script>
$('.star-rating').raty({
path: '/assets/',
readOnly: true,
return $(this).attr('data-score');
}
});
</script>
★ comments/_form.html.erb 코드변경 및 추가
* 변경
<%= f.label :rating %>
<%= f.number_field :rating %>
↓↓↓
<div id="star-rating"></div>
* js 코드추가
<script>
$('#star-rating').raty({
path: '/assets',
scoreName: 'comment[rating]'
});
</script>