请问怎么将多个数据表中的字段呈现同一个html页面:
用flask中的paginate实现了教师表的分页,但该教师表中需要用到另两张表中的字段,但是:
paginate = Teacher_info.query.order_by(Teacher_info.id).paginate(page=page, per_page=20, error_out=False)
teachers = paginate.items
return render_template('teacher_info.html', paginate=paginate, teachers=teachers)