• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ruby(wrongnumberofarguments(1for2))

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Ruby要求:数据表的名字和model的名字必须关联:
1. 表名小写,model名的第一个字母大写;
2. 表名用复数形式(如products),model用单数形式(如Product).

在Rails2.0中,scaffold从核心中移出,转变成插件,使用时,我们需要在所在项目里用下面的命令下载:

ruby script/plugin install scaffolding

配置好数据库:
drop table if exists products;
create table products (
    id int not null auto_increment,
    title varchar(100) not null,
    description text not null,
    image_url varchar(200) not null,
    price decimal(10,2) not null,
    date_available datetime not null,
    primary key (id)
);

然后:
ruby script/generate scaffold yourmodel [field:attribute field:attribute field:attribute]

对应数据库语句:ruby script/generate scaffold Product title:string description:text image_url:string price:decimal

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/qiujiaqun/archive/2009/08/06/4417970.aspx

Ruby要求:数据表的名字和model的名字必须关联:
1. 表名小写,model名的第一个字母大写;
2. 表名用复数形式(如products),model用单数形式(如Product).

在Rails2.0中,scaffold从核心中移出,转变成插件,使用时,我们需要在所在项目里用下面的命令下载:

ruby script/plugin install scaffolding

配置好数据库:
drop table if exists products;
create table products (
    id int not null auto_increment,
    title varchar(100) not null,
    description text not null,
    image_url varchar(200) not null,
    price decimal(10,2) not null,
    date_available datetime not null,
    primary key (id)
);

然后:
ruby script/generate scaffold yourmodel [field:attribute field:attribute field:attribute]

对应数据库语句:ruby script/generate scaffold Product title:string description:text image_url:string price:decimal

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/qiujiaqun/archive/2009/08/06/4417970.aspx


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ruby安装发布时间:2022-07-14
下一篇:
Ruby+watir自动化测试环境搭建发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap