rails
jn615
这个作者很懒,什么都没留下…
展开
-
rails 跳过model 验证 skip model validate
rails中在model设置验证,但有的地方又不需要验证, 可以通过一下方法跳过 保存好办, 直接save(false) 比如: user = User.new user.save(false) 但是update怎么办呢 没有update_attributes(false) 可以这样: user = User.first user.attributes = params[...原创 2011-07-07 22:36:00 · 333 阅读 · 0 评论 -
rails 数据类型对比 mysql postgresql sqlite
Rails mysql postgresql sqlite binary blob bytea blobboolean tinyint(1) boolean booleandate date ...原创 2011-10-26 09:32:54 · 101 阅读 · 0 评论 -
Rails 3.1 execjs and Could not find a JavaScript runtime
今天用rails3.1 生成一个新的项目, 遇到: Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable) google一下,在gem 中添加: gem ...原创 2011-11-01 09:17:04 · 119 阅读 · 0 评论 -
undefined method `name' for "actionmailer":String (NoMethodError)
undefined method `name' for "actionmailer":String (NoMethodError) 这会出现在rails2.3中, 如果你的gem版本比较高的话,我的是1.8.10的, 降级为1.6.2即可 gem update --system 1.6.2...原创 2011-11-07 13:35:27 · 372 阅读 · 0 评论