NestJS $ 打印 (JQuery $)
NestJS $ Print (JQuery $)
我正在尝试打印 {studentId} 但不幸的是我无法打印它。
@Get('/:studentId')
getStudentById(
@Param('studentId') studentId: string
){
console.log(studentId);
return "Get Student By Id: ${studentId}.";
}
我正在尝试打印 {studentId} 但不幸的是我无法打印它。
@Get('/:studentId')
getStudentById(
@Param('studentId') studentId: string
){
console.log(studentId);
return "Get Student By Id: ${studentId}.";
}