Rails——想要创建一个名称中带有破折号或下划线的控制器

发布于 2024-09-07 22:16:23 字数 280 浏览 3 评论 0原文

我想创建一些基本的 html 页面以添加到我的 Rails 应用程序中。

我认为最轻松的方法是创建一个控制器。问题是我希望页面有两个词的标题。 =>前任。 www.example.com/foo-bar/

出于 SEO 的原因,它确实必须是两个单词,我需要分隔,使用 www.example.com/foobar/ 会是最后的手段

问题是我无法脚本/生成控制器foo-bar因为破折号。

有什么解决方法吗?

I wanted to create some basic html pages to add to my rails app.

I figured the restful way to do it would be to create a controller. The problem is I'd like the pages to be a two word title. => ex. www.example.com/foo-bar/

For SEO reasons it really must be two words, and I need the separation, using www.example.com/foobar/ would be a last resort

The problem is I cant script/generate controller foo-bar because the of the dash.

Is there any kind of workaround for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野味少女 2024-09-14 22:16:23

下划线对你有用吗?您可以简单地:

$ script/generate controller foo_bar

您的控制器类名称将是 FooBarController,默认路由会将其映射到类似 http://www.example.com/foo_bar/abc...代码>.

Does an underscore work for you? You can simply:

$ script/generate controller foo_bar

Your controller class name will be FooBarController, and the default route would map it to something like http://www.example.com/foo_bar/abc....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文