作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有以下类(class)
class Discount < ApplicationRecord
belongs_to :coupon, polymorphic: true, optional: true
end
并且有一种情况,我想在使优惠券类为零的同时创建折扣,我如何向调用类似行的客户端类提供值
@discount.coupon.code
无需在通话前添加检查?我希望能够指定由
@discount.coupton.code
之类的调用返回的默认值基于 Discount 类中的参数。
最佳答案
应该能够覆盖 getter。像这样的东西...
class Discount < ApplicationRecord
belongs_to :coupon, polymorphic: true, optional: true
def coupon
unless some_condition
self[:coupon]
else
OpenStruct.new(code: 'a_non_coupon_discount')
end
end
end
关于ruby-on-rails - 如何为在 Ruby on Rails 中调用可选多态关系提供虚拟值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62940633/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!