Angular 5 HTTP Get请求参数 - 发送多个对象

时间:2018-03-03 23:41:45

标签: angular angular5 angular-http

我正在尝试使用对象作为参数创建HTTP get请求。这可能吗? 我已经尝试了多种方法但没有成功。如果我只发送字符串而不是整个类

,它就可以工作
export class City {
  id: number;
  name: string;
}

  const params = new HttpParams().set('city', city)
  return this.http.get('http://localhost:3000/api/place/', {params})

0 个答案:

没有答案