@BeforeInsert() @BeforeUpdate() beforeInsert() { this.foodCost ? this.foodCost.map((tmp) => { MaterialType.sm4.encrypt(tmp.foodsID, tmp.cost) }) : undefined }
时间: 2023-03-31 22:04:32 浏览: 57
这是一段 TypeScript 代码,其中使用了装饰器 @BeforeInsert 和 @BeforeUpdate,以及一个方法 beforeInsert()。在这个方法中,对 this.foodCost 进行了加密处理。
相关问题
@BeforeInsert() @BeforeUpdate() beforeInsert() { this.foodCost ? this.foodCost = MaterialType.sm4.encrypt(this.foodCost) : undefined }
这是一段 TypeScript 代码,使用了装饰器 @BeforeInsert 和 @BeforeUpdate 来在插入和更新数据前执行 beforeInsert() 方法,该方法对 this.foodCost 属性进行了加密处理。
阅读全文