前后端分离系列 -- SpringBoot + Vue ElementUI Transfer(穿梭框)组件实现班级学生管理系统 -- 班级模块学生的添加与移除 Transfer不过如此

以下是一个简化的示例,展示了如何在前后端分离的项目中使用Spring Boot和Vue.js来实现一个Transfer组件(穿梭框组件),用于展示和管理班级学生列表。

后端(Spring Boot):




@RestController
@RequestMapping("/api/class")
public class ClassController {
 
    // 假设有一个服务ClassService用于处理班级相关的业务逻辑
    @Autowired
�mmand
    private ClassService classService;
 
    // 获取班级学生列表
    @GetMapping("/{id}/students")
    public ResponseEntity<List<Student>> getStudents(@PathVariable("id") Long classId) {
        List<Student> students = classService.getStudentsByClassId(classId);
        return ResponseEntity.ok(students);
    }
 
    // 更新班级学生列表
    @PostMapping("/{id}/students")
    public ResponseEntity<Void> updateStudents(@PathVariable("id") Long classId, @RequestBody List<Student> students) {
        classService.updateStudents(classId, students);
        return ResponseEntity.ok().build();
    }
}

前端(Vue.js + ElementUI):




<template>
  <el-transfer
    v-model="value"
    :data="studentList"
    :titles="['可选学生', '已选学生']"
    @change="handleChange"
  ></el-transfer>
</template>
 
<script>
export default {
  data() {
    return {
      value: [],
      studentList: []
    };
  },
  created() {
    this.fetchStudents();
  },
  methods: {
    fetchStudents() {
      // 假设已经设置了axios请求配置
      axios.get('/api/class/' + this.$route.params.classId + '/students')
        .then(response => {
          this.studentList = response.data.map(student => ({
            key: student.id,
            label: student.name
          }));
        })
        .catch(error => {
          console.error('Error fetching students:', error);
        });
    },
    handleChange(value, direction, movedKeys) {
      if (direction === 'right') {
        // 发起更新学生列表的请求
        axios.post('/api/class/' + this.$route.params.classId + '/students', this.value.map(id => ({id})))
          .then(response => {
            console.log('Students updated successfully');
          })
          .catch(error => {
            console.error('Error updating students:', error);
          });
      }
    }
  }
};
</script>

在这个例子中,我们使用了ElementUI的<el-transfer>组件来实现学生的管理。前端通过axios从后端获取学生列表,并在组件的v-model绑定的value数组中维护已选择的学生ID。当用户移动学生时,通过监听@change事件来执行更新操作,并发起对后端的/api/class/{id}/students接口的POST请求来更新班级学生列表。

评论已关闭

推荐阅读

Vue中使用mind-map实现在线思维导图
2024年08月04日
VUE
Web前端最全Vue实现免密登录跳转的方式_vue怎么样不登录返回首页,最强技术实现
2024年08月04日
VUE
vue3 项目搭建教程(基于create-vue,vite,Vite + Vue)
2024年08月04日
VUE
Vue-颜色选择器实现方案——>Vue-Color( 实战*1+ Demo*7)
2024年08月04日
VUE
Vue项目卡顿慢加载?这些优化技巧告诉你!_vue数据多渲染卡顿
2024年08月04日
VUE
vue中的keep-alive详解与应用场景
2024年08月04日
VUE
Vue、React实现excel导出功能(三种实现方式保姆级讲解)
2024年08月04日
vue-office/docx插件实现docx文件预览
2024年08月04日
VUE
java调用js文件的两种方法(支持V8引擎)
2024年08月04日
JavaScript:解决计算精度问题/mathjs/bignumber.js/big.js/decimal.js
2024年08月04日
两周从爬虫小白变大神 _yjs_js_security_passport
2024年08月04日
JS笔记(对象、函数、数组)
2024年08月04日
Markdown.js:强大的纯JavaScript Markdown解析器
2024年08月04日
Vue项目:js模拟点击a标签下载文件并重命名,URL文件地址下载方法、请求接口下载文件方法总结。
2024年08月04日
vue 父组件怎么获取子组件里面的data数据
2024年08月04日
VUE
个人开发实现AI套壳网站快速搭建(Vue+elementUI+SpringBoot)
2024年08月04日
el-table 表格封装并改造实现单元格可编辑
2024年08月04日
none
nodejs环境下创建vue项目、SSH密钥登陆!!!
2024年08月04日
vue+quill+element-ui实现视频、图片上传及缩放保姆级教程,轻松使用富文本
2024年08月04日
【three.js】22. Imported Models导入模型
2024年08月04日