[gem] acts_as_list_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > [gem] acts_as_list

[gem] acts_as_list

 2013/7/10 4:36:24  tiroc  程序员俱乐部  我要评论(0)
  • 摘要:注意事项:1.当在STI中,用type字段来做scope时,如果使用Symbol,就会报错acts_as_listscope::type原因在:https://www.ruby-forum.com/topic/91504解决办法:改成数组acts_as_listscope:[:type]注意:不能改成acts_as_listscope:'type',因为String类型的参数会被直接拿来做condition用
  • 标签:list Gem
注意事项:
1. 当在 STI 中,用 type 字段来做 scope 时,如果使用 Symbol,就会报错
class="ruby" name="code">
acts_as_list scope: :type

原因在:https://www.ruby-forum.com/topic/91504
解决办法:改成数组
acts_as_list scope: [:type]

注意:不能改成 acts_as_list scope: 'type',因为 String 类型的参数会被直接拿来做 condition 用
发表评论
用户名: 匿名