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 | 31 |
Tags
- Django
- 루비온레일즈
- jquery
- 파이썬 웹 프레임워크
- Python
- Ruby On Rails
- nodejs api
- 루비 온 레일즈
- 모닝버드
- 루비
- rails review
- 홈페이지 개발하기
- 프론트엔드
- css3
- 장고
- 웹프로그래밍
- 웹 프로그래밍 입문
- 장고 공부하기
- django 공부하기
- express-mysql-session
- nodejs
- 웹 프론트엔드
- 데스크탑애플리케이션
- 웹 프로그래밍
- rails
- node.js
- 모듈화
- 레일즈
- 예스인테리어
- 꿀팁
Archives
- Today
- Total
목록레일즈 좋아요 기능 (1)
노래하듯 이야기하고, 춤추듯 정복하라.
[Ruby on Rails] 좋아용 기능 구현하기: acts_as_votable
# pin(게시글) 모델에 좋아요기능 추가하기- acts_as_votable 이란 루비 gem을 사용한다.- Gemfile에 Gem 추가하기 # Gemfile gem 'acts_as_votable', '~> 0.11.1' 터미널 -> $bundle install # 마이그레이션- 터미널-> $rails g acts_as_votable:migration-> $rails db:migrate # 모델에 코드추가: pins.rb # pin.rb acts_as_votable # 라우팅 설정: routes.rb # routes.rb resources :pins do member do put "like", to: "pins#upvote" end end # 컨트롤러에서 upvote 액션 생성: pins_controll..
프로그래밍/Ruby & Rails
2018. 8. 9. 16:12