2009年2月26日 星期四

RoR試開筆記(四)

ruby script\generate scaffold Post name:string title:string content:text
使用 scaffold 自動 generate 出一個名為 Post 的 model、controler、viewer,包含了一些基本的操作。

rake db:migrate
把剛剛自動生成的 model (想像成 table) 資料表作更新。

修改 \blog\app\views\home\index.html.erb
加入這個 post controler 的連結

<%= link_to "My Blog", posts_path %>

如此就可以到 http://127.0.0.1:3000/posts 進入 post controler 了
或到透過 home 首頁的 post 連結進入。

沒有留言:

VirtualBox 空間減肥

sdelete64 -z c: VBoxManage  modifymedium  disk  "/Users/fellow/VirtualBox VMs/Win10/Win10.vdi"  --compact *.vdi 路徑可以在 VirtualBox 儲...