add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# Rails 路由
> 列出 Rails 应用程序中的路由。
> 更多信息:<https://guides.rubyonrails.org/routing.html>。
- 列出所有路由:
`rails routes`
- 以扩展格式列出所有路由:
`rails routes --expanded`
- 列出部分匹配 URL 辅助方法名称、HTTP 动词或 URL 路径的路由:
`rails routes -g {{posts_path|GET|/posts}}`
- 列出映射到指定控制器的路由:
`rails routes -c {{posts|Posts|Blogs::PostsController}}`