order_list.forEach(async (elm,index)=>{
(order_list[index] as any).order_goods = await this.og.find({
where:{
order_id:elm.order_id
}
});
如代码是不能正确赋值的
正确的写法应该是什么?(注:使用forEach,find操作是Promise)
慕尼黑5688855
相关分类