我是 Rails 开发的新手。我为一个方法创建了一些别名,我想知道调用了哪个别名。
我有这个代码。
alias_method :net_stock_quantity_equals :net_stock_quantity
alias_method :net_stock_quantity_gte :net_stock_quantity
alias_method :net_stock_quantity_lte :net_stock_quantity
alias_method :net_stock_quantity_gt :net_stock_quantity
alias_method :net_stock_quantity_lt :net_stock_quantity
def net_stock_quantity
#some code here
end
我想知道用户调用了哪个别名。就像用户打电话一样,net_stock_quantity_equals
我应该知道用户没有net_stock_quantity_equals
打电话net_stock_quantity
。
任何帮助,将不胜感激。