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

前端 未结 11 875
面向向阳花
面向向阳花 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:30

    You can do the following:

    this.http.get(url, { params: { "actors[]": actorsArray } });
    

提交回复
热议问题