關於Ruby on Rails視圖編寫的一些建議_ruby專題

來源:互聯網
上載者:User


    不要直接從視圖調用模型層。
    不要在視圖構造複雜的格式,把它們輸出到視圖 helper 的一個方法或是模型。
    使用 partial 模版與布局來減少重複的代碼。

    加入 client side validation 至慣用的 validators。 要做的步驟有:

        聲明一個由 ClientSideValidations::Middleware::Base 而來的自定 validator

      

 module ClientSideValidations::Middleware   class Email < Base   def response    if request.params[:email] =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i    self.status = 200    else    self.status = 404    end    super   end   end  end

        建立一個新檔案public/javascripts/rails.validations.custom.js.coffee 並在你的 application.js.coffee 檔案加入一個它的參照:

    # app/assets/javascripts/application.js.coffee  #= require rails.validations.custom

        添加你的使用者端 validator:

  #public/javascripts/rails.validations.custom.js.coffee  clientSideValidations.validators.remote['email'] = (element, options) ->   if $.ajax({   url: '/validators/email.json',   data: { email: element.val() },   async: false   }).status == 404   return options.message || 'invalid e-mail format'


相關文章

聯繫我們

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