3

link_to 'Back', posts_pathERBでは機能するのに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 に答える