我的第一個Ruby On Rails + MongoDB程式

來源:互聯網
上載者:User

    最近想進一步學習一下MongoDB,而很久之前使用過ROR,正好也湊個機會重新拾起來。下面是建立第一個項目的過程。

       主要參考文檔:

       1. Rails 3 - Getting started

       2. MongoDB and MongoMapper (可能需要翻牆)

       3. Getting started with VMware CloudFoundry, MongoDB and Rails (可能需要翻牆)

一、建立程式的架構

建立項目時不再使用rails active_record支援:

$ rails new todo -O

依次完成文檔1中的所提示的步驟。

1. 編輯GemFile,增加下面的內容:

source "http://gemcutter.org"gem "mongo_mapper"

2. 執行

$ bundle install

安裝項目的依賴包

3. 在config/initializer下面建立一個mongo.rb檔案,指定全域的資料庫資訊:

MongoMapper.connection = Mongo::Connection.new('localhost', 27017)MongoMapper.database = 'todo' #為了簡單起見,沒有為不同的環境指定不同的資料if defined?(PhusionPassenger)   PhusionPassenger.on_event(:starting_worker_process) do |forked|     MongoMapper.connection.connect if forked   endend

4. 在lib目錄下面建立一個mongo.rake檔案(在本文中還沒有用到)

namespace :db do  namespace :test do    task :prepare do      # Stub out for MongoDB    end  endend

完成以上步驟後,啟動程式:

$ rails server**Notice: C extension not loaded. This is required for optimum MongoDB Ruby driver performance.  You can install the extension as follows:  gem install bson_ext  If you continue to receive this message after installing, make sure that the  bson_ext gem is in your load path and that the bson_ext and mongo gems are of the same version.=> Booting WEBrick=> Rails 3.0.10 application starting in development on http://0.0.0.0:3000=> Call with -d to detach=> Ctrl-C to shutdown server[2011-10-19 23:36:14] INFO  WEBrick 1.3.1[2011-10-19 23:36:14] INFO  ruby 1.9.2 (2011-07-09) [x86_64-linux][2011-10-19 23:36:14] INFO  WEBrick::HTTPServer#start: pid=19595 port=3000

從上面輸出中可以看到bson_ext庫沒有載入。首先按照提示安裝該庫:

sudo gem install bson_ext

然後編輯GemFile,加入下面一行:

gem "bson_ext"

再次啟動程式,Notice提示訊息消失,啟動正常。在瀏覽器輸入:http://127.0.0.1:3000,就可以看到如下頁面:

二、添加頁面和處理邏輯

通過rails的generate命令來產生頁面、控制器和模型層檔案:

$ rails generate scaffold project name:string --orm=mongo_mapper

命令執行完畢後,重新啟動伺服器,在瀏覽器輸入中:http://127.0.0.1/projects,就可以看到如下:

點擊New Project連結,添加一個新項目:

輸入項目名稱後,點擊Create Project按鈕儲存

點擊Back連結回到列表頁面,可以看到新建立的項目blog,已經在列表裡了:

登入到MongoDB資料庫中可以查詢到剛剛插入的資料:

到現在為止還沒有寫一行代碼。不過先到這裡吧,以後接著續。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.