No route matches [POST] “/articles/new”

前端 未结 7 1638
余生分开走
余生分开走 2020-12-31 09:57

When I try to submit the form its giving me the error

No route matches [POST] \"/articles/new\"

the files are: new.html.erb
this file

相关标签:
7条回答
  • 2020-12-31 10:43

    change:

    resources :article
    

    to:

    resources :articles #plural
    

    that way it will map to:

    articles_path    POST    /articles(.:format)     articles#create
    
    0 讨论(0)
提交回复
热议问题