django AttributeError: 'QuerySet' object has no attribute 'category'

django AttributeError: 'QuerySet' object has no attribute 'category'_第1张图片
原因是 在进行course 过滤时 course 拿到的值太多 系统不能确定 你要拿的值到底是哪个
所以在下面 在进行筛选时 会报错
解决方法 course = CourseInfo.objects.filter(id = int(course_id))[0]

你可能感兴趣的:(django)