vue forEach 如何拼接逗号
时间: 2023-07-20 08:44:56 浏览: 153
vue&jeecg.md
如果您想使用`forEach`方法在Vue中将数组的元素拼接成一个字符串,可以使用以下代码:
```javascript
let arr = ["apple", "banana", "orange"];
let result = "";
arr.forEach(function(item, index) {
result += item;
if (index !== arr.length - 1) {
result += ", ";
}
});
console.log(result); // "apple, banana, orange"
```
在上面的代码中,我们使用了`forEach`循环遍历数组中的每个元素。在循环中,我们将当前元素添加到`result`字符串中,并在元素不是最后一个元素时添加逗号和空格。最后,我们输出`result`字符串,它将包含所有元素以逗号分隔的字符串。
阅读全文