作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个名为Index
的表。这是迁移:
class CreateIndices < ActiveRecord::Migration
def change
create_table :indices, {:id => false} do |t|
t.string :name
t.float :returns, array: true, default: []
t.float :navs, array: true, default: []
t.float :sharpe
t.timestamps
end
execute "ALTER TABLE indices ADD PRIMARY KEY (name);"
end
end
set_primary_key
命令才能使其正常工作,因此在index.rb中包含以下内容
class Index < ActiveRecord::Base
set_primary_key :name
end
localhost:3000/indices
时,出现以下错误
undefined method `set_primary_key' for #<Class:0x37132e0>
set_primary_key
行,它将加载常规的空支架,但是我认为这没有给我想要的主键功能。我究竟做错了什么?
最佳答案
如果您使用的是Rails 3.2或更高版本,则不建议使用set_primary_key
方法,请查看Rails 3.2 release notes-第8.1节,它建议使用赋值方法,而不是self.primary_key=
,就像您在评论中所说的那样。
关于ruby-on-rails - Rails中的set_primary_key错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20386636/
我是一名优秀的程序员,十分优秀!