你好再次stackoverflowers!
我想创建链接但不使用默认:id
属性,例如
article_path(@article)
生成
/articles/example-article
而不是默认的
/articles/1
奖金,我想做articles
默认控制器。我使用以下方法实现了这一点:
root 'articles#index'
get ':name' => 'articles#show', as: 'article'
这工作正常,但article_path
仍会生成 id 链接