为什么`posts_path`在`rails console`中不起作用?

时间:2013-10-07 05:00:28

标签: ruby-on-rails ruby

为什么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

1 个答案:

答案 0 :(得分:6)

您需要在控制台中添加app的上下文。

app.posts_path
app.get app.posts_path
app.response
app.response.body