如何在调用 HttpClient.get() 时替换 URL 中的令牌。

huangapple go评论77阅读模式
英文:

How to replace a token in the URL when calling HttpClient.get()

问题

使用httpClient.get()调用时,如何替换URL中的${fooId}标记:

this.httpClient.get('http://my-server/foo/${fooId}');

实际上,我正在使用以下方式进行替换:this.httpClient.get('http://my-server/foo/${fooId}'.replace('${fooId}', fooId)); 但我认为这不太干净。

英文:

How to replace ${fooId} token in the URL when calling httpClient.get() this way :

this.httpClient.get('http://my-server/foo/${fooId}');

Actually I'm using this.httpClient.get('http://my-server/foo/${fooId}'.replace('${fooId}', fooId)); but I think it's not very clean

答案1

得分: 4

Use backticks `` instead of simple quotes '.

英文:

Use backticks `` instead of simple quotes '

huangapple
  • 本文由 发表于 2020年1月3日 21:42:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/59579637.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定