rubyonrails创建一个博客项目概述.doc

控制台创建一个博客项目 rails new blog cd blog rails g scaffold post title:string text:text rails g model comment post_id:integer text:text rake db:migrate rails s 测试:http://localhost:3000/posts修改index.html.erb blog/app/views/posts/index.html.erb 删除原有的内容,新的内容如下: h1%=?@post.title?%/h1%=?@post.text?%p?? %=?link_to?Back,?posts_path?%?? |?? %=?link_to?Edit,?edit_post_path(@post)?%?? |?? %=?link_to?Delete,@post,:method?=?:delete,?:confirm?=?Are?you?sure??%?? /p ? 来源:?/pan_tian/article/details/增加Comments项 继续修改show.html.erb blog/app/views/posts/show.html.erb h1%=?@post.title?%/h1%=?@post.text?%h2Co

文档评论(0)

1亿VIP精品文档

相关文档