0
在Ruby中,你可以創建一個類(型號)是這樣的:你可以在Scala中複製RubyOnRails AR事件嗎?
class User < ActiveRecord::Base
before_save :do_something
def save
# do something will get called here magically
...
end
def do_something
end
end
在斯卡拉現在說我想要做同樣的事情,這可能嗎?
基本上每當在scala類中調用任何方法時,do_something
都會在它之前被調用。
注意:您可以添加更多的方法被調用,如:
before_save :do_something, do_something_else
你只是在談論數據庫訪問或任何任意Scala類? – Ryan
任意scala課程,想要學習如何使用scala設計這樣的東西。 – loyalflow