How to pass an array within a query string in HttpClient?

前端 未结 11 1020
面向向阳花
面向向阳花 2021-02-02 09:03

This is my array of actors:

[\'Elvis\', \'Jane\', \'Frances\']

How to pass this array within a query strin

11条回答
  •  轮回少年
    2021-02-02 09:18

    According the interface you can do that like

    const params = new HttpParams({ 
       fromObject: { 'actors[]': ['Elvis', 'Jane', 'Frances'] } 
    });
    this.http.get(url, { params });
    

提交回复
热议问题