Ruby on rails development from scratch ()-ActiveRecord BASICS (access attributes)

Source: Internet
Author: User
If a model object has an attribute named balance, you can use the index operator to obtain the value of this attribute. You can use a string or tag. Here we use a tag, for example:

Account [: balance]#=>Get value

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

However, this common code is not recommended. It is better to use ruby's access method:

Account. balance#=>Get value

Account. balance = 0.0#=>Set Value

Here, we use two methods to obtain the attribute value. Active Record performs an appropriate type conversion. For example, if the column in the database is a TimeStamp, we will get a Time object. If you want to get 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 use the private methods read_attribute and write_attribute of the Model. These two methods use Attribute names as parameters.

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.