如何将对象转换为字符串

时间:2015-01-07 08:40:29

标签: javascript angularjs

我在Angular中的$ scope中有这个值

$scope.tags = [
            { text: 'test@test.com' },
            { text: 'test1@test.com' },
            { text: 'test2@test.com' },
            { text: 'test3@test.com' }
          ];

我想要结果

test @ test.com,test1 @ test.com,test2 @ test.com,test3 @ test.com 我正在尝试发送多封电子邮件

我是否需要运行循环,或者还有其他方法可以执行此操作。

由于

1 个答案:

答案 0 :(得分:4)

您可以使用map

tags = tags.map(function (el) {
  return el.text;
}).join(',');

Example