public getQuestionsById(qid:number): Observable<Questions>{
return this.httpClient.get<Questions>
('http://localhost:9090/angular/questions/${qid}');
}
Here, I want to concatenate the "qid" variable value in this URL. What should be the right format for that?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…