Ruby on Rails development from scratch (39)-ActiveRecord Basics (Access properties)

Source: Internet
Author: User
Tags access properties ruby on rails

If you have a property named balance in a model object, you can get the value of the property by using the index operator, you can use a string or tag, where we use the tag, for example:

Account[:balance] #=> Get value

Account[:balance] = 0.0 #=> Set Value

But this common code is discouraged, and better yet, using Ruby's Access method:

Account.balance #=> Get Value

account.balance = 0.0 #=> Set Value

Here, we use two methods to get the value of the property, the Active record will do the appropriate type conversion, for example, if the column in the database is a timestamp (TimeStamp), then we will get a time object, if you want the original value of the attribute, add _ Before_type_cast to the end of the access method, for example:

Account.balance_before_type_cast #=> "123.4", a string

Account.release_date_before_type_cast #=> "20050301"

Finally, you can also use the model's own private method Read_attribute and Write_attribute, which use the property name as an argument.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.