标签: 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})