如何将数组的值显示为逗号分隔的值

问题描述 投票:0回答:1

31: (2) ["https://localhost:44375/api/Image/2388", "https://localhost:44375/api/Image/2388"]

我正在获得这样的价值,但我想展示它,

https://localhost:44375/api/Image/2388, https://localhost:44375/api/Image/2388

我该如何实现?

typescript angular7
1个回答
0
投票

您可以使用array#join

join()方法通过连接数组(或类似数组的对象)中的所有元素(由逗号或指定的分隔符字符串分隔)来创建并返回新的字符串。

array#join
© www.soinside.com 2019 - 2024. All rights reserved.