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

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

    let actorsArray = ['Elvis', 'Jane', 'Frances'];
    this.http.get(url, { params: { actors: actorsArray } });
    

提交回复
热议问题