我正在尝试验证这样的日期(购买日期和收货日期都是类属性):
@IsDate()
@MinDate(date: this.purchaseDate)
receiptDate: Date;
但是我收到以下错误:
src/main/ts/domain/PurchaseOrder.ts(20,16): 错误 TS1005: ',' 预期。src/main/ts/domain/PurchaseOrder.ts(20,12):错误 TS2304:找不到名称“日期”。
购买日期注释约束应该如何通过?注释来自类验证器库。