Full URL with url_for in Rails

前端 未结 6 1536
别那么骄傲
别那么骄傲 2020-12-28 15:34

How can I get a full url in rails?

url_for @book is returning only a path like /book/1 and not www.domain.com/book/1

Thanks (and sorry if the answer is obvio

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-28 16:16

    If it's a RESTful resource you'll be able to use this:

    book_url(@book)
    

提交回复
热议问题