- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些模型,如新闻和下载,其中有_许多评论:as => :commentable。评论belongs_to :commentable 并且是:polymorphic。和评论一样,有订阅。所以我的路线是这样的:
resources :news do
resources :comments do
post :like, :on => :member
delete :like, :on => :member
end
resources :subscriptions
...
end
resources :downloads do
resources :comments do
post :like, :on => :member
delete :like, :on => :member
end
resources :subscriptions
...
end
...
def comment_resources
resources :comments do
# ...
end
resources :subscriptions
end
最佳答案
1)如果你在新闻和下载中有完全相同的内部路线,你可以
%w(news downloads).each do |res|
resources res do
resources :comments do
post :like, :on => :member
delete :like, :on => :member
end
resources :subscriptions
...
end
end
concern :commentable do
resources :comments do
post :like, :on => :member
delete :like, :on => :member
end
resources :subscriptions
end
resources :news, concerns: :commentable do
...
end
resources :downloads, concerns: :commentable do
...
end
关于ruby-on-rails - 干掉几个模型的重复路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3521388/
最近在造轮子,从 0 到 1 的那种,就差前台的界面了,大家可以耐心耐心耐心期待一下。其中需要设计一些数据库表,可以通过 Navicat 这种图形化管理工具直接开搞,也可以通过一些数据库设计工具来搞,
本文已经收录到Github仓库,该仓库包含 计算机基础、Java基础、多线程、JVM、数据库、Redis、Spring、Mybatis、SpringMVC、SpringBoot、分布式、微服务、设
干燥路径“/A”和“/B”的解析参数的“Angular”方式是什么?在我的 $routeProvider 中,我为这些场景调用完全相同的解析函数,并且不知道避免在 AngularJS 框架中重复代码的
我确信有一种方法可以 DRY 代码。 changeColor() 所做的只是改变父组件的背景颜色。 import { Play } from "./play"; import { Hello } fr
我在 Node v6.3.0 中的 api 上运行以下代码,该 api 运行两个单独的 Promise,具体取决于 POST 请求中是否存在参数的条件。 if (paramExists) {
在我的 Ruby on Rails 项目中,我有一个邮件程序,它基本上为给定用户准备系统中发生的事情的每日摘要。在邮件 Controller 中,我根据一些通用模式(在特定日期内、不是由该用户创作
我是一名优秀的程序员,十分优秀!