axios.get(' /course-student/course:' + this.courseId +'/not-enrolled-student').then(
时间: 2024-05-31 21:10:38 浏览: 203
这是使用 Axios 库发送 GET 请求的代码片段。它会向服务器发送一个名为“not-enrolled-student”的请求,并在 URL 中包含一个名为“courseId”的参数。这个参数的值是“this.courseId”,可能是从某个对象或组件的属性中获取的。在请求成功后,它将调用一个回调函数来处理响应数据。
阅读全文