我在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 我正在尝试发送多封电子邮件
我是否需要运行循环,或者还有其他方法可以执行此操作。
由于