프로그래밍/Rails
_path와 _url의 차이
choidacheeze
2020. 11. 10. 18:07
Rails route를 작성하면 controller에서 사용할 수 있는 헬퍼의 일종인 _path
와 _url
의 차이를 알아보자.
_path
- 상대패스
redirect_to
외에서 사용link_to
에서 많이 사용
root_path => '/'
new_path => '/new'
_url
- 절대패스
redirect_to
에서 많이 사용(HTTP에서는 리다이렉트할 때 완전한 URL을 요구하므로)
root_url => 'http://www.example.com/'
new_url => 'http://www.example.com/new'