NestJS $ Print (JQuery $)



我试图打印{studententid}但不幸的是,我不能打印它。

@Get('/:studentId')
getStudentById(
@Param('studentId') studentId: string
){
console.log(studentId);
return "Get Student By Id: ${studentId}.";
}

看这个=>https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String

And this =>https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

最新更新