第二節 誰應該閱讀它?
這個文檔可用於任何對在RoR框架上使用AJax感興趣的人。這個文檔假設你熟悉RoR,Ruby,及通常使用的約定。它對於理解 JavaScript,AJax是什麼及為什麼你需要在你的應用程序內包括它都很有幫助。如果你發現任何時候你理解上有困難,那麼最好的參閱是 Dave Thomas 的應用Rails進行敏捷Web開發。
This document is for anybody with an interest in using
第三節 Rails 版本
RJS模板要求Rails1.1或更高版本。如果你運行的低於Rails1.1,那麼你需要更新你的Rails安裝版本到最高版本。如果你更新一個現有工程來使用RJS模板,你必須更新你的工程的 JavaScript 庫。這可通過下面 Rake 任務來完成:
RJS templates require Rails 1.1 or greater. If you are running anything less than Rails 1.1 then you'll need to update your installed version of Rails to the latest version. If you are updating an existing project to use RJS templates, you must update your project's JavaScript librarIEs. This can be accomplished using a Rake task included with Rails:
cody> rake rails:update
該 Rake 任務將更新你的工程配置,腳本,JavaScript 為最新Rails版本。
This Rake task will update your project's configs, scripts, and JavaScripts with the latest versions from Rails.