我试图在rails中显示网址但是会返回错误
NoMethodError: undefined method `url' for #<Post:0x000000058ea918>
我可以使用哪种方法?
答案 0 :(得分:1)
在Rails控制台中键入rake routes
,以查看工作应用程序中的路由列表。并且,不要忘记将_path
放在最后,例如:posts_path
。
答案 1 :(得分:-1)
找到它:url_for(@post)
,这将显示(在我的情况下)&#39; posts / ID&#39;如果你想要完整的URL,你可以在它之前手动添加它。