所以我想从 comms 中的 ID 中获取所有 commPlans,但由于某种原因,我只得到一个对象(这是 comms 中的第一个 ID)。这是我的代码:
comms := models.GetComms(CommID)
if comms == nil {
componentsJson.WriteError(ctx, componentsError.ERROR_PARAMETERS_INVALID)
return
}
var commPlans []models.CommPlan
for _, comm := range comms {
commPlans = models.GetCommPlans(comm.CommPlanID)
}
if commPlans == nil {
componentsJson.WriteError(ctx, componentsError.ERROR_PARAMETERS_INVALID)
return
}
德玛西亚99
相关分类