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

Ruby on Rail 实现 REST And ActiveResource

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

 rails new blog //创建应用
 cd blog //进入应用目录
 rails generate scaffold Post name:stringtitle:stringcontent:text

rake db:migrate //创建数据表

 rails server -p 888888


4. cd .. 
5 rails new notebook 
6 cd notebook
7 rails generate scaffold book name:string

rake db:migrate //创建数据表

在Mode目录 下创建一个 Post.rb

class Post < ActiveResource::Base
self.site = 'http://localhost:888888'
end

这样在controller里,可以调用post的方法了,比如Post.new或者Post.all

创建 welcomeController

$ rails generate controller welcome index

有些问题查看前一篇文章

打开 welcomecontroller.rb编辑

class WelcomeController < ApplicationController
def index
# notes = Note.find :all
notes = Note.all
puts "I see #{notes.size} note(s):"
notes.each do |note|
puts " #{note.date}: #{note.body}"
end
end
end

读者可以任意修改

rails server 

http://localhost:3000/

终端下出现了

[2013-01-23 21:23:10] INFO WEBrick::HTTPServer#start: pid=4683 port=3000
I see 2 note(s):
2013-01-23: 你好,世界
2013-01-23: 很不错哦

证明成功了

 


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Ruby中的语句中断和返回发布时间:2022-07-14
下一篇:
ruby中数组的常用函数发布时间: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