81,122
社区成员




<label class="label">授课教师</label>
<p class="content" id="teacher">
<span th:if="${course!=null}"
th:each="i:${course.teachers}"
th:text="${i}+'<br>'">
</span>
</p>
<span th:each="i:${course?.teachers}"
th:text="${i}+'<br>'">
</span>
<span th:if="${course!=null and course.teachers!=null}"
th:each="i:${course.teachers}"
th:text="${i}+'<br>'">
</span>