PHP 魔法方法 __call、__get 和 __set 的 Ruby 等效项
我非常确定 Ruby 具有这些(相当于 __call、__get 和 __set),否则 find_by 在 Rails 中如何工作?也许有人可以举一个简单的例子来说明如何定义与 find_by 相同的方法?
谢谢
I am pretty sure that Ruby has these (equivalents for __call, __get and __set), because otherwise how find_by would work in Rails? Maybe someone could give a quick example of how to define methods that act same as find_by?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,您可以将
调用 __call
php
ruby
__set 和 __get
php
ruby
in short you can map
__call
php
ruby
__set and __get
php
ruby
动态查找器是通过实现缺少
http://ruby-doc.org/ 的 方法来完成的core/classes/Kernel.html#M005925
看一下这篇博文,它会告诉你它们如何工作的要点。
http://blog.hasmanythrough.com/2006/8/13/how-dynamic-finders-work
The dynamic finders are done by implementing method missing
http://ruby-doc.org/core/classes/Kernel.html#M005925
Take a look at this blog post, it will give you the gist of how they work..
http://blog.hasmanythrough.com/2006/8/13/how-dynamic-finders-work