Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 홈페이지 개발하기
- rails review
- 루비
- css3
- 꿀팁
- 장고
- nodejs
- nodejs api
- express-mysql-session
- 레일즈
- node.js
- 예스인테리어
- django 공부하기
- jquery
- Django
- 웹 프로그래밍
- 데스크탑애플리케이션
- 파이썬 웹 프레임워크
- 웹 프론트엔드
- 웹프로그래밍
- 프론트엔드
- 장고 공부하기
- 루비온레일즈
- 모듈화
- rails
- 모닝버드
- Python
- Ruby On Rails
- 루비 온 레일즈
- 웹 프로그래밍 입문
Archives
- Today
- Total
목록rails review (2)
노래하듯 이야기하고, 춤추듯 정복하라.
[Ruby & Rails] Post모델에 별점(Review) 기능 추가하기2
★ 파일과 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 코드변경 및 추가 * 변경 ↓↓↓* js 코드추가 ★ comments/_form.html.erb 코드변경 및 추가* 변경 ↓↓↓ * js 코드추가
프로그래밍/Ruby & Rails
2018. 8. 10. 19:25
[Ruby on Rails] Post모델에 별점(Review) 기능 추가하기
★ review 스캐폴드 모델 생성 $rails g scaffold review rating:integer review:text $rails db:migrate ★ review + user + post 관계 - $rails g migration add_user_id_to_review user_id:integer:index - user.rb has_many :reviews has_many :posts- review.rb belongs_to :user belongs_to :post - 터미널 -> $rails g migration add_post_id_to_review post_id:integer:index -> $rails db:migrate - post.rb has_many :reviews ★ revie..
프로그래밍/Ruby & Rails
2018. 8. 10. 18:16