Ruby On Rails學習筆記

來源:互聯網
上載者:User

參考書籍:《Agile Web Development With Rails 4th edition》

建立新的網站,建立一些預設目錄和檔案:

$ rails new <projectname>

啟動伺服器,在項目目錄中執行命令:

$ rails server

預設網站地址 http://localhost:3000/

為兩個頁面產生controller

$ rails generate controller ControllerName page1 page2

.html.erb檔案中 <%= %>包含的代碼是ruby。

@variable 是變數

連結可以用標準html連結

<a href="/say/hello">Hello</a>

但如果將來檔案位置變化,這個url可能會失效,應該採用Rails的方案:

<%= link_to "Goodbye", say_goodbye_path %>

config/routes.rb 配置瀏覽器路徑與檔案的映射關係。比如訪問http://localhost:3000/可用root把某檔案作為預設檔案。

root :to => 'store#index', :as => 'store'

:string 是symbol,比string省記憶體,因為symbol只存一次。

Ruby特殊的foreach運算式,括弧實際上是block,| |包含的是代表每個成員的局部變數:

array.each { |localVariable| print localVariable}

RubyOnRails, 學習筆記
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.