Explain the difference between a has_one and belongs_to association in Ruby on Rails.
A product has_one provider, a customer has_one order.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。
了解热门 Ruby On Rails 面试题与答案,帮助应届生和有经验的候选人为求职面试做好准备。
了解热门 Ruby On Rails 面试题与答案,帮助应届生和有经验的候选人为求职面试做好准备。
搜索问题以查看答案。
收藏此条目、标记为困难题,或将其加入复习集合。
收藏此条目、标记为困难题,或将其加入复习集合。
Public, protected, and private.
Public methods can be called by all objects and subclasses of the class in which they are defined in.
Protected methods are only accessible to objects within the same class.
Private methods are only accessible within the same instance.
收藏此条目、标记为困难题,或将其加入复习集合。
The ! indicates that the method is about to change the object itself.
Here’s an example:
foo = "A TEST STRING" # a string called foo foo.downcase! # modifies foo permanently a test string puts foo # prints modified foo a test string
Similarly if you did not want the object to be changed you could have something simple like:
foo2 = "A 2nd Test String" # a string called foo foo2.downcase # modifies foo temporarily a 2nd test string puts foo2 nbsp; # prints original foo A 2nd Test String
收藏此条目、标记为困难题,或将其加入复习集合。