get(uri: string) {this.http.get(``${this.ROOT_URL}/${uri}``);}
should be
get(uri: string) {return this.http.get(`${this.ROOT_URL}/${uri}`);}
You need the return
statement in the get
method of your Webservice and there is a mistyping error: You have two `` instance of one.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…