为什么link_to 'Back', posts_path
在ERB中有效但posts_path
在控制台中不起作用?
$ rails console
irb(main):005:0> posts_path
NameError: undefined local variable or method `posts_path' for main:Object
答案 0 :(得分:6)
您需要在控制台中添加app
的上下文。
app.posts_path
app.get app.posts_path
app.response
app.response.body