3

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

1 回答 1

6

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

app.posts_path
app.get app.posts_path
app.response
app.response.body
于 2013-10-07T05:05:14.860 回答