The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
������������ �� �������������� �� ActiveRecord

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Maxim Kulkin

Posts: 58
Nickname: hapk
Registered: Sep, 2006

Maxim Kulkin is developer in Selectosa Systems.
������������ �� �������������� �� ActiveRecord Posted: Nov 10, 2006 2:46 AM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Maxim Kulkin.
Original Post: ������������ �� �������������� �� ActiveRecord
Feed Title: Software development
Feed URL: http://maximkulkin.blogspot.com/feeds/posts/full?alt=rss
Feed Description: Software development
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Maxim Kulkin
Latest Posts From Software development

Advertisement
�������������� �� ������������������ ���������������� �������������������������� ActiveRecord, ������������ ������ ������ �������� ���� ������ ������ �������������������� ����������������, ������ ���� ������������������ ���������������� �� �������������� �� ActiveRecord (����������������, ������������������������ ����������������������).

������������ �� ������������ �������������������� ActiveRecord - �������������������� @attributes. ������ ���� ���������� ������������������, ������ ���������������� ������ ������������ �������������������� AR. ���� ��������, ������ ������ "�������������� => ����������������" �� ������������ ������ (�� ������������ ������������) ���������������������������� ����������, �������������� ������������ ���� �������� ������������.

���� ���������������� ���������������� ���������������� - ���� ���������� �������������� ��������. ������ �������������� �� ������������������ �������� ������������ read_attribute(name) / write_attribute(name, value). ������������ ������������������/���������������������� ���������������� ����/�� @attributes, ������ ������������ ������������ ������������������ ����������������������������:

- read_attribute ������������������������ �������������������� �������� �� ��������, �������������������������������� �������� �������������� ���� (������, ����������������, ������������ sql �������� ������������ date ������������������������ �� �������������������� ������������ Date). ���������� �������� ���������� ������������������������ ���������������������������� ������������ ���� YAML (�������������� ������ �� ���������� ���������������������� ? =)). �������� ���������������� ���� �������������������������� �������������� �������� ������������ - ���������������� ������������������������ ������ ��������.

- write_attribute ����������: ���� ������������������������������ boolean ������������ �� ����������, ������������ ������������ - �� nil ������ ���������������� ����������������.

������ �������� �������������� �������� ���������������������� ����������������: [] / []=. ��.��. �������� ���� ���������������������������� ���������������� ������ ������������ ����������������, ���� ������������ / ������������ ������������ ������������ ������������������ �������� ���������������������� �������� "������������������" ��������������.

����������, �������� ���������������� attributes. ������ ������������, ������, �� ����������������, ������������ �������������������� ���������� �������� ������������������ (���� ������������������ ������������ ���������������� ��������, ������ ������������ attributes - ������ ������������������ AR ���� ������������������), �������������������� ������������ read_attribute (��.��. ������������ �� ���������������������� ������������ �� ����������������������������������). ���������� �������� ���������� ������������������������ ����������, ���������������������� ������������������ ������������������ ���������������� ������ ���������������� �������������������� ���� ������ (���������� :except �� :only).
�������������� attributes= ������ ���� �������������������� ���������������� �������������������������������� ���������������� ���������������� (����������������, firstname=), �������� ������ �������������� ��������������, ������ ���� ���������������� �������������������������� (������, ���������������� ����������������, ���������� �������������������� ������ �� �������������� �� �������� �������������������� ������������ (�� ���������������������� - �������� ������������) �� �������������� ��������������).

�� ������������ ���������� ��������������������: ������������ �������������� ������������������������ _before_type_cast ����������. �������� ���������� �������������������� ���������������� �������������������������������� ���������� @attributes ����������������, ���������� ���������������������������� ������������ ������ �� read_attribute.

������������:
* ������������ ���������������� ���������������� ������������ ���������������������������� (������������ ������ ������ ���� ���������������������� �� @attributes. �� �������������������� ������������ �� ���������������� �������� ���� ���������������� �������������� ������������ / ���������������� ������������ ���������������������� composed_of. ������ ������ �� �������� �������������� ������������ ������������������ ���� ���������� ������������������ ������������������������ ������������.
* ������ �������������������� ������������������ ���������� ���������������� ���������� ���������������������� ������������ �� ������������������ ���� ����, ������ ������ ���������������� ���������������� True/False ���������� ������������������������ �� 1/0, ������������ ������������ - �� nil, ���������������������� _before_type_cast ������������������.

������������ ������������������ �������������������� �������������������� ������������ �� ���������������� �� ������������������: �������������� ������, ���������� ���������� �������� �������������������������� ���������� ������ ���������� HH:MM. ������ ����������:

1. �������������� ������������������ ���������������� ������ �������������������� ��������������������������:

class Event < ActiveRecord::Base
def time_text
"%d:%02d" % [self.time/60, self.time%60]
end

def time_text=(value)
self.time = begin
parts = value.split ':'
parts[0].to_i*60+parts.to_i
rescue
nil
end
end
end

��������������! ������������ ������������ ���� ���������� text_field :event, :time_text �� ������ ������ ������������������������. ���� ���� �������������� ����������, �������� �� ������ �������� ������������. ���������������� ���� ������������������ ������.
2. �������� ������������������ �������������������������������������� ����������������:

class Event < ActiveRecord::Base
def time_text
self[:time_text] || ("%d:%02d" % [self.time/60, self.time%60])
end

def time_text=(value)
self[:time_text] = value
self.time = begin
parts = value.split ':'
parts[0].to_i*60+parts.to_i
rescue
nil
end
end
end

text_field �������� ���� ���������������� (�������� ���� ������������������������) ����������������, �������������� �������������������� _before_type_cast ������������������. ������������, ������������������ ���� ������������������ ������������������������������������ ����������������, ���� ������������ �������������� ������, �������� ���������������� ������������.

������������ �������� ���������������� ������ ������������������:

class Event < ActiveRecord::Base
validates_format_of :time_text, :with => /\d?\d\:\d\d/
end


���� ������, ��������������������, �� ������.

Read: ������������ �� �������������� �� ActiveRecord

Topic: Don't be afraid of harnessing SQL Previous Topic   Next Topic Topic: Political.shift

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use